Skip to content

Instantly share code, notes, and snippets.

@Devalo
Created August 29, 2016 16:41
Show Gist options
  • Save Devalo/8098b1bc83d6b4f427df67519704bab5 to your computer and use it in GitHub Desktop.
Save Devalo/8098b1bc83d6b4f427df67519704bab5 to your computer and use it in GitHub Desktop.
Prefix Verb URI Pattern Controller#Action
new_user_session GET /users/sign_in(.:format) devise/sessions#new
user_session POST /users/sign_in(.:format) devise/sessions#create
destroy_user_session DELETE /users/sign_out(.:format) devise/sessions#destroy
user_password POST /users/password(.:format) devise/passwords#create
new_user_password GET /users/password/new(.:format) devise/passwords#new
edit_user_password GET /users/password/edit(.:format) devise/passwords#edit
PATCH /users/password(.:format) devise/passwords#update
PUT /users/password(.:format) devise/passwords#update
cancel_user_registration GET /users/cancel(.:format) devise/registrations#cancel
user_registration POST /users(.:format) devise/registrations#create
new_user_registration GET /users/sign_up(.:format) devise/registrations#new
edit_user_registration GET /users/edit(.:format) devise/registrations#edit
PATCH /users(.:format) devise/registrations#update
PUT /users(.:format) devise/registrations#update
DELETE /users(.:format) devise/registrations#destroy
ckeditor /ckeditor Ckeditor::Engine
articles GET /articles(.:format) articles#index
POST /articles(.:format) articles#create
new_article GET /articles/new(.:format) articles#new
edit_article GET /articles/:id/edit(.:format) articles#edit
article GET /articles/:id(.:format) articles#show
PATCH /articles/:id(.:format) articles#update
PUT /articles/:id(.:format) articles#update
DELETE /articles/:id(.:format) articles#destroy
root GET / static_pages#index
static_pages_kontakt GET /static_pages/kontakt(.:format) static_pages#kontakt
flyplassinformasjon GET /flyplassinformasjon(.:format) static_pages#flyplassinfo
informasjon GET /informasjon(.:format) static_pages#info
operativt GET /operativt(.:format) static_pages#operativt
om GET /om(.:format) static_pages#om
restriksjoner GET /restriksjoner(.:format) static_pages#restriksjon
Routes for Ckeditor::Engine:
pictures GET /pictures(.:format) ckeditor/pictures#index
POST /pictures(.:format) ckeditor/pictures#create
picture DELETE /pictures/:id(.:format) ckeditor/pictures#destroy
attachment_files GET /attachment_files(.:format) ckeditor/attachment_files#index
POST /attachment_files(.:format) ckeditor/attachment_files#create
attachment_file DELETE /attachment_files/:id(.:format) ckeditor/attachment_files#destroy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment