trabajo-afectivo/config/routes/user.rb

15 lines
722 B
Ruby
Raw Normal View History

module ExtraRoutes
def add(map)
# users
map.match '/api/users/search', :to => 'users#search', :via => [:get, :post]
map.match '/api/users/password_reset', :to => 'users#password_reset_send', :via => :post
2012-11-11 22:51:44 +00:00
map.match '/api/users/password_reset_verify', :to => 'users#password_reset_verify', :via => :post
map.match '/api/users', :to => 'users#index', :via => :get
map.match '/api/users/:id', :to => 'users#show', :via => :get
map.match '/api/users', :to => 'users#create', :via => :post
map.match '/api/users/:id', :to => 'users#update', :via => :put
end
module_function :add
end