trabajo-afectivo/config/routes/role.rb

12 lines
429 B
Ruby
Raw Normal View History

module ExtraRoutes
def add(map)
# roles
map.match '/api/roles', :to => 'roles#index', :via => :get
map.match '/api/roles/:id', :to => 'roles#show', :via => :get
map.match '/api/roles', :to => 'roles#create', :via => :post
map.match '/api/roles/:id', :to => 'roles#update', :via => :put
end
module_function :add
end