Add GET /api/v2_alpha/notifications/:group_key/accounts
(#31725)
This commit is contained in:
parent
c9641c8070
commit
ea0d691e19
4 changed files with 135 additions and 3 deletions
|
@ -344,7 +344,7 @@ namespace :api, format: false do
|
|||
end
|
||||
|
||||
namespace :v2_alpha do
|
||||
resources :notifications, only: [:index, :show] do
|
||||
resources :notifications, param: :group_key, only: [:index, :show] do
|
||||
collection do
|
||||
post :clear
|
||||
get :unread_count
|
||||
|
@ -353,6 +353,8 @@ namespace :api, format: false do
|
|||
member do
|
||||
post :dismiss
|
||||
end
|
||||
|
||||
resources :accounts, only: [:index], module: :notifications
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue