mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-05 06:26:21 +00:00
17 lines
215 B
Ruby
17 lines
215 B
Ruby
class AboutController < ApplicationController
|
|
before_action :set_body_classes
|
|
|
|
def index
|
|
end
|
|
|
|
def terms
|
|
@state = 'TBD'
|
|
end
|
|
|
|
private
|
|
|
|
def set_body_classes
|
|
@body_classes = 'about-body'
|
|
end
|
|
end
|