~cytrogen/masto-fe

ref: fdc3ff7c2d538751fc5e761fae33fc007294a540 masto-fe/app/controllers/api/v1/announcements_controller.rb -rw-r--r-- 735 bytes
fdc3ff7c — Eugen Rochko Change notifications API to use a replica (#25874) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

class Api::V1::AnnouncementsController < Api::BaseController
  before_action -> { doorkeeper_authorize! :write, :'write:accounts' }, only: :dismiss
  before_action :require_user!
  before_action :set_announcements, only: :index
  before_action :set_announcement, except: :index

  def index
    render json: @announcements, each_serializer: REST::AnnouncementSerializer
  end

  def dismiss
    AnnouncementMute.find_or_create_by!(account: current_account, announcement: @announcement)
    render_empty
  end

  private

  def set_announcements
    @announcements = Announcement.published.chronological
  end

  def set_announcement
    @announcement = Announcement.published.find(params[:id])
  end
end