welcome page and documentatino
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-08-01 00:27:37 +08:00
parent 798162ae4f
commit a5ade4006d
4 changed files with 1185 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
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