Rails API, app Flutter, infrastruttura Docker/MediaMTX, sito marketing e documentazione di deploy. Co-authored-by: Cursor <cursoragent@cursor.com>
20 lines
216 B
Ruby
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
|