mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 04:24:22 +00:00
44b2ee3485
* Add customizable user roles * Various fixes and improvements * Add migration for old settings and fix tootctl role management
20 lines
405 B
Ruby
20 lines
405 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Api::V1::Admin::Trends::StatusesController < Api::V1::Trends::StatusesController
|
|
before_action -> { authorize_if_got_token! :'admin:read' }
|
|
|
|
private
|
|
|
|
def enabled?
|
|
super || current_user&.can?(:manage_taxonomies)
|
|
end
|
|
|
|
def statuses_from_trends
|
|
if current_user&.can?(:manage_taxonomies)
|
|
Trends.statuses.query
|
|
else
|
|
super
|
|
end
|
|
end
|
|
end
|