Created
October 13, 2012 20:32
-
-
Save rodreegez/3886049 to your computer and use it in GitHub Desktop.
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
trigger_app GET /apps/:id/trigger(.:format) apps#trigger | |
app_hooks GET /apps/:app_id/hooks(.:format) hooks#index | |
POST /apps/:app_id/hooks(.:format) hooks#create | |
new_app_hook GET /apps/:app_id/hooks/new(.:format) hooks#new | |
edit_app_hook GET /apps/:app_id/hooks/:id/edit(.:format) hooks#edit | |
app_hook GET /apps/:app_id/hooks/:id(.:format) hooks#show | |
PATCH /apps/:app_id/hooks/:id(.:format) hooks#update | |
PUT /apps/:app_id/hooks/:id(.:format) hooks#update | |
DELETE /apps/:app_id/hooks/:id(.:format) hooks#destroy | |
apps GET /apps(.:format) apps#index | |
POST /apps(.:format) apps#create | |
new_app GET /apps/new(.:format) apps#new | |
edit_app GET /apps/:id/edit(.:format) apps#edit | |
app GET /apps/:id(.:format) apps#show | |
PATCH /apps/:id(.:format) apps#update | |
PUT /apps/:id(.:format) apps#update | |
DELETE /apps/:id(.:format) apps#destroy | |
root GET / apps#index |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment