Files
MySMSAPio/app/controllers/pages_controller.rb
Min Zeya Phyo a5ade4006d
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
welcome page and documentatino
2026-08-01 00:27:37 +08:00

16 lines
369 B
Ruby

class PagesController < ActionController::Base
layout "public"
protect_from_forgery with: :exception
# GET /
# Public landing page introducing the SMS Gateway API.
def home
end
# GET /docs
# Interactive API documentation covering every endpoint, the WebSocket
# protocol, webhooks, authentication, rate limits, and error codes.
def docs
end
end