mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-01-31 20:12:55 -05:00
9 lines
206 B
Ruby
9 lines
206 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::TermsOfServiceController < Admin::BaseController
|
|
def index
|
|
authorize :terms_of_service, :index?
|
|
@terms_of_service = TermsOfService.live.first
|
|
end
|
|
end
|