Add /api/v1/notifications/clear, non-existing link cards for statuses will
now return empty hash instead of throwing a 404 error. When following, merge into timeline will filter statuses
This commit is contained in:
@ -24,4 +24,9 @@ class Api::V1::NotificationsController < ApiController
|
||||
def show
|
||||
@notification = Notification.where(account: current_account).find(params[:id])
|
||||
end
|
||||
|
||||
def clear
|
||||
Notification.where(account: current_account).delete_all
|
||||
render_empty
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user