Skip to content

Instantly share code, notes, and snippets.

@rodreegez
Created October 13, 2012 20:32
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save rodreegez/3886049 to your computer and use it in GitHub Desktop.
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