mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-14 14:29:28 +00:00
9 lines
219 B
Ruby
9 lines
219 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Admin::TermsOfService::HistoriesController < Admin::BaseController
|
||
|
def show
|
||
|
authorize :terms_of_service, :index?
|
||
|
@terms_of_service = TermsOfService.published.all
|
||
|
end
|
||
|
end
|