Browse Source

Add POST /api/v1/notifications/:id/dismiss (#8905)

POST /api/v1/notifications/dismiss was a mistake in #2251
master
Eugen Rochko 5 years ago
committed by GitHub
parent
commit
09d789e79b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      config/routes.rb

+ 4
- 0
config/routes.rb View File

@ -296,6 +296,10 @@ Rails.application.routes.draw do
resources :notifications, only: [:index, :show] do
collection do
post :clear
post :dismiss # Deprecated
end
member do
post :dismiss
end
end

Loading…
Cancel
Save