mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-13 07:49:29 +00:00
9 lines
211 B
Ruby
9 lines
211 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::TermsOfServiceController < Admin::BaseController
|
|
def index
|
|
authorize :terms_of_service, :index?
|
|
@terms_of_service = TermsOfService.published.first
|
|
end
|
|
end
|