Browse Source

Method to fetch a single notification

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
3a4b5961be
2 changed files with 5 additions and 1 deletions
  1. +4
    -0
      app/controllers/api/v1/notifications_controller.rb
  2. +1
    -1
      config/routes.rb

+ 4
- 0
app/controllers/api/v1/notifications_controller.rb View File

@ -20,4 +20,8 @@ class Api::V1::NotificationsController < ApiController
set_pagination_headers(next_path, prev_path)
end
def show
@notification = Notification.where(account: current_account).find(params[:id])
end
end

+ 1
- 1
config/routes.rb View File

@ -114,7 +114,7 @@ Rails.application.routes.draw do
end
end
resources :notifications, only: [:index]
resources :notifications, only: [:index, :show]
resources :favourites, only: [:index]
resources :accounts, only: [:show] do

Loading…
Cancel
Save