about summary refs log tree commit diff
path: root/app/controllers/api/v1/notifications_controller.rb
diff options
context:
space:
mode:
authorAshley <expenses@airmail.cc>2017-04-22 12:30:35 +1200
committerEugen <eugen@zeonfederated.com>2017-04-22 02:30:35 +0200
commit05ac28f3e451c9239093f55a32e9f1eda770f8fa (patch)
treef0d737536ea1e6aef0ce1428d11743034f112b15 /app/controllers/api/v1/notifications_controller.rb
parent0f852c6f749dcee61758c4c5ccd94be98f29512c (diff)
Added API for single notification dismissal (#2251)
* Added API backend for notification dismissal

* Added render statement

* Changed statement
Diffstat (limited to 'app/controllers/api/v1/notifications_controller.rb')
-rw-r--r--app/controllers/api/v1/notifications_controller.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/controllers/api/v1/notifications_controller.rb b/app/controllers/api/v1/notifications_controller.rb
index 3cff29982..e79434f1d 100644
--- a/app/controllers/api/v1/notifications_controller.rb
+++ b/app/controllers/api/v1/notifications_controller.rb
@@ -30,6 +30,11 @@ class Api::V1::NotificationsController < ApiController
     render_empty
   end
 
+  def dismiss
+    Notification.find_by!(account: current_account, id: params[:id]).destroy!
+    render_empty
+  end
+
   private
 
   def exclude_types