You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
393 B
20 lines
393 B
# frozen_string_literal: true
|
|
|
|
class Api::V1::Admin::Trends::LinksController < Api::V1::Trends::LinksController
|
|
before_action -> { authorize_if_got_token! :'admin:read' }
|
|
|
|
private
|
|
|
|
def enabled?
|
|
super || current_user&.can?(:manage_taxonomies)
|
|
end
|
|
|
|
def links_from_trends
|
|
if current_user&.can?(:manage_taxonomies)
|
|
Trends.links.query
|
|
else
|
|
super
|
|
end
|
|
end
|
|
end
|