2020-01-23 21:00:13 +00:00
|
|
|
# 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
|
2020-02-24 21:21:40 +00:00
|
|
|
AnnouncementMute.find_or_create_by!(account: current_account, announcement: @announcement)
|
2020-01-23 21:00:13 +00:00
|
|
|
render_empty
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_announcements
|
|
|
|
@announcements = begin
|
2020-02-03 00:53:09 +00:00
|
|
|
Announcement.published.chronological
|
2020-01-23 21:00:13 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_announcement
|
|
|
|
@announcement = Announcement.published.find(params[:id])
|
|
|
|
end
|
|
|
|
end
|