about summary refs log tree commit diff
path: root/app/controllers/api/v1/featured_tags
diff options
context:
space:
mode:
authorTakeshi Umeda <noel.yoshiba@gmail.com>2019-09-09 17:50:33 +0900
committerEugen Rochko <eugen@zeonfederated.com>2019-09-09 10:50:33 +0200
commit9c9dcf580ab9b40c3fd420159a0a02ea4dd11925 (patch)
tree73ca667e26a94ee31dcaba4a824e62d016906756 /app/controllers/api/v1/featured_tags
parenta75009a65e1335047dff5488b4e67bdc03677590 (diff)
Add featured tags API (#11778)
* Add featured tags API

* Remove show and update, change scope, fix code style
Diffstat (limited to 'app/controllers/api/v1/featured_tags')
-rw-r--r--app/controllers/api/v1/featured_tags/suggestions_controller.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/controllers/api/v1/featured_tags/suggestions_controller.rb b/app/controllers/api/v1/featured_tags/suggestions_controller.rb
new file mode 100644
index 000000000..fb27ef88b
--- /dev/null
+++ b/app/controllers/api/v1/featured_tags/suggestions_controller.rb
@@ -0,0 +1,20 @@
+# frozen_string_literal: true
+
+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
+
+  respond_to :json
+
+  def index
+    render json: @most_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)
+  end
+end