mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-14 22:30:20 +00:00
17 lines
393 B
Ruby
17 lines
393 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Admin::TermsOfService::PreviewsController < Admin::BaseController
|
||
|
before_action :set_terms_of_service
|
||
|
|
||
|
def show
|
||
|
authorize @terms_of_service, :distribute?
|
||
|
@user_count = @terms_of_service.scope_for_notification.count
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def set_terms_of_service
|
||
|
@terms_of_service = TermsOfService.find(params[:terms_of_service_id])
|
||
|
end
|
||
|
end
|