SMS gateway api service for android application
Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled

This commit is contained in:
Min Zeya Phyo
2026-01-27 11:24:16 +06:30
parent c883fa7128
commit 1fdff55544
3 changed files with 789 additions and 4 deletions

View File

@@ -1,9 +1,12 @@
module Admin
class LogsController < BaseController
def index
items_per_page = params[:items]&.to_i || 50
items_per_page = 50 unless [10, 25, 50, 100].include?(items_per_page)
@pagy, @messages = pagy(
apply_filters(SmsMessage).order(created_at: :desc),
items: 50
items: items_per_page
)
respond_to do |format|