summaryrefslogtreecommitdiffstats
path: root/app/controllers/api
diff options
context:
space:
mode:
authorabcang <abcang1015@gmail.com>2020-09-08 00:47:41 +0900
committerGitHub <noreply@github.com>2020-09-07 17:47:41 +0200
commite79d719e92e120ba3dd6ec2d8521f7aaa9482634 (patch)
tree08ef699ffb616dea36fcfdf87a3ca68fc5aa9aec /app/controllers/api
parente8bc187845b78e4a94894c69ecf930a524ad2056 (diff)
Changed tag most_used to recently_used (#14760)
Diffstat (limited to 'app/controllers/api')
-rw-r--r--app/controllers/api/v1/featured_tags/suggestions_controller.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/controllers/api/v1/featured_tags/suggestions_controller.rb b/app/controllers/api/v1/featured_tags/suggestions_controller.rb
index 8c1b81a0f00..75545d3c7f7 100644
--- a/app/controllers/api/v1/featured_tags/suggestions_controller.rb
+++ b/app/controllers/api/v1/featured_tags/suggestions_controller.rb
@@ -3,15 +3,15 @@
class Api::V1::FeaturedTags::SuggestionsController < Api::BaseController
before_action -> { doorkeeper_authorize! :read, :'read:accounts' }, only: :index
before_action :require_user!
- before_action :set_most_used_tags, only: :index
+ before_action :set_recently_used_tags, only: :index
def index
- render json: @most_used_tags, each_serializer: REST::TagSerializer
+ render json: @recently_used_tags, each_serializer: REST::TagSerializer
end
private
- def set_most_used_tags
- @most_used_tags = Tag.most_used(current_account).where.not(id: current_account.featured_tags).limit(10)
+ def set_recently_used_tags
+ @recently_used_tags = Tag.recently_used(current_account).where.not(id: current_account.featured_tags).limit(10)
end
end