This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2022-02-24 15:34:14 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-04 17:41:40 -07:00
|
|
|
class Api::V1::Admin::Trends::LinksController < Api::V1::Trends::LinksController
|
2022-02-24 15:34:14 -08:00
|
|
|
before_action -> { authorize_if_got_token! :'admin:read' }
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2022-07-04 17:41:40 -07:00
|
|
|
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
|
2022-02-24 15:34:14 -08:00
|
|
|
end
|
|
|
|
end
|