Files
MatchLiveTv/backend/app/controllers/public/pages_controller.rb
Emiliano Frascaro bba6df52c0 Initial commit: monorepo Match Live TV.
Rails API, app Flutter, infrastruttura Docker/MediaMTX, sito marketing e documentazione di deploy.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-26 17:45:37 +02:00

20 lines
216 B
Ruby

module Public
class PagesController < WebBaseController
def home
end
def features
end
def pricing
@plans = Plan.ordered
end
def privacy
end
def terms
end
end
end