diff options
author | ThibG <thib@sitedethib.com> | 2020-09-07 14:16:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-07 14:16:54 +0200 |
commit | 437d71bddf967573df3912ee5976f7c5a5a7b4c7 (patch) | |
tree | 322231d7d50704edf8da762b69ee22c9850f2ce3 /app/controllers/api | |
parent | d967251fdc3826ad27d30e55258cfa4cdfd7c871 (diff) | |
parent | e5f934ddf0aa4ef9efbf45751bc00bebff768d99 (diff) |
Merge pull request #1418 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/controllers/api')
-rw-r--r-- | app/controllers/api/v1/accounts/featured_tags_controller.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/controllers/api/v1/accounts/featured_tags_controller.rb b/app/controllers/api/v1/accounts/featured_tags_controller.rb new file mode 100644 index 000000000..d6277261d --- /dev/null +++ b/app/controllers/api/v1/accounts/featured_tags_controller.rb @@ -0,0 +1,22 @@ +# frozen_string_literal: true + +class Api::V1::Accounts::FeaturedTagsController < Api::BaseController + before_action :set_account + before_action :set_featured_tags + + respond_to :json + + def index + render json: @featured_tags, each_serializer: REST::AccountFeaturedTagSerializer + end + + private + + def set_account + @account = Account.find(params[:account_id]) + end + + def set_featured_tags + @featured_tags = @account.featured_tags + end +end |