completed SMS gateway project

This commit is contained in:
Min Zeya Phyo
2025-10-22 17:22:17 +08:00
commit c883fa7128
190 changed files with 16294 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
module Admin
class ApiTesterController < BaseController
def index
@api_keys = ApiKey.active_keys.order(created_at: :desc)
@gateways = Gateway.order(created_at: :desc)
end
end
end