Sha256: 08c65ed2b1f1cdff9f3aa6b735bc4d7bb03ebce0ae1db1a53f1ccdd97e42339c
Contents?: true
Size: 732 Bytes
Versions: 11
Compression:
Stored size: 732 Bytes
Contents
Rails.application.routes.draw do namespace :notify_user do resources :notifications, only: [:index] put 'notifications/mark_read' => 'notifications#mark_read' get 'notifications/notifications_count' => 'notifications#notifications_count' get 'notifications/:id/read' => 'notifications#read' get 'notifications/mark_all' => 'notifications#mark_all' get 'notifications/unsubscribe' => 'notifications#unsubscribe' get 'notifications/subscribe' => 'notifications#subscribe' get 'notifications/unauth_unsubscribe' => 'notifications#unauth_unsubscribe' get 'notifications/subscriptions' => 'notifications#subscriptions' put 'notifications/subscriptions' => 'notifications#subscriptions' end end
Version data entries
11 entries across 11 versions & 1 rubygems