added route to config/routes.rb for removing synapse mappings. It's not actually defined in the controller though....

This commit is contained in:
Devin Howard 2013-01-05 22:41:19 -05:00
parent 6226930c98
commit 5bd311ceea

View file

@ -11,6 +11,7 @@ ISSAD::Application.routes.draw do
match 'maps/:id/savelayout', to: 'maps#savelayout', via: :put, as: :savelayout
match 'maps/:id/realtime', to: 'maps#realtime', via: :get, as: :realtime
match 'mappings/:map_id/:topic_id/removefrommap', to: 'topics#removefrommap', via: :get, as: :removefrommap
match 'mappings/:map_id/:synapse_id/removefrommap', to: 'synapses#removefrommap', via: :post, as: :removefrommap
resource :session