Sha256: 24a4b85c1bf43207d021e59163967c60482a312177920d7ae21d534197e0d26f

Contents?: true

Size: 355 Bytes

Versions: 10

Compression:

Stored size: 355 Bytes

Contents

ExceptionNotificationServer::Engine.routes.draw do
  resources :notifications, only: [:index, :create, :show, :update, :destroy] do
    member do
      put :investigate
      put :fix
      put :renew
    end
    collection do
      put :investigate
      put :fix
      put :renew
      delete :destroy
    end
  end
  root to: 'notifications#index'
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
exception_notification_server-0.0.11 config/routes.rb
exception_notification_server-0.0.10 config/routes.rb
exception_notification_server-0.0.9 config/routes.rb
exception_notification_server-0.0.8 config/routes.rb
exception_notification_server-0.0.7 config/routes.rb
exception_notification_server-0.0.6 config/routes.rb
exception_notification_server-0.0.5 config/routes.rb
exception_notification_server-0.0.4 config/routes.rb
exception_notification_server-0.0.3 config/routes.rb
exception_notification_server-0.0.2 config/routes.rb