Created
March 13, 2015 08:31
-
-
Save ivanovv/185582fd658858ef87eb to your computer and use it in GitHub Desktop.
challenges
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| join_challenge POST /challenges/:id/join(.:format) challenges#join | |
| leaderboard_challenge GET /challenges/:id/leaderboard(.:format) challenges#leaderboard | |
| leave_challenge DELETE /challenges/:id/leave(.:format) challenges#leave | |
| challenges GET /challenges(.:format) challenges#index | |
| POST /challenges(.:format) challenges#create | |
| new_challenge GET /challenges/new(.:format) challenges#new | |
| edit_challenge GET /challenges/:id/edit(.:format) challenges#edit | |
| challenge GET /challenges/:id(.:format) challenges#show | |
| PATCH /challenges/:id(.:format) challenges#update | |
| PUT /challenges/:id(.:format) challenges#update | |
| DELETE /challenges/:id(.:format) challenges#destroy | |
| challenges_user GET /users/:id/challenges(.:format) challenges#index |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment