10 lines
147 B
Ruby
10 lines
147 B
Ruby
class PagesController < ApplicationController
|
|
def privacy
|
|
@current_section = :privacy
|
|
end
|
|
|
|
def tos
|
|
@current_section = :tos
|
|
end
|
|
end
|