akkounts/app/controllers/pages_controller.rb
Râu Cao f2e8ca790c
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
Release Drafter / Update release notes draft (pull_request) Successful in 3s
Add Privacy and ToS pages, footer menu
2025-05-30 13:27:15 +04:00

10 lines
147 B
Ruby

class PagesController < ApplicationController
def privacy
@current_section = :privacy
end
def tos
@current_section = :tos
end
end