Added reset password api method

This commit is contained in:
Jason Denney
2013-05-28 00:25:23 -04:00
parent 8c864e2006
commit 761ab81b56
2 changed files with 29 additions and 0 deletions
+1
View File
@@ -10,6 +10,7 @@ Velocipede::Application.routes.draw do
scope 'v1', :module => :v1 do
post 'checkin' => "logs#checkin", :as => "api_checkin"
post 'checkout' => "logs#checkout", :as => "api_checkout"
post 'reset' => "users#password_reset", :as => "api_password_reset"
end
end