Sha256: e78e4424860a05217c8e7653305375d3e6776af6e64de9b92d6441fb9fd9c4a3
Contents?: true
Size: 1.31 KB
Versions: 8
Compression:
Stored size: 1.31 KB
Contents
Rails.application.routes.draw do get 'up' => 'rails/health#show', as: :rails_health_check root 'welcome#index' get 'register', to: 'auth/registered_user#new', as: :register post 'register', to: 'auth/registered_user#create' get 'login', to: 'auth/authenticated_session#new', as: :login post 'login', to: 'auth/authenticated_session#create' get 'forgot-password', to: 'auth/password_reset_link#new', as: :password_request post 'forgot-password', to: 'auth/password_reset_link#create', as: :password_email get 'reset-password/:token', to: 'auth/new_password#new', as: :password_reset post 'reset-password', to: 'auth/new_password#create', as: :password_store get 'verify-email', to: 'auth/email_verification_notification#new', as: :verification_notice post 'verify-email', to: 'auth/email_verification_notification#create', as: :verification_send get 'verify-email/:id/:hash', to: 'auth/verified_email#create', as: :verification_verify post 'logout', to: 'auth/authenticated_session#destroy', as: :logout get 'dashboard', to: 'dashboard#index', as: :dashboard get 'profile', to: 'profile#edit', as: :profile_edit patch 'profile', to: 'profile#update', as: :profile_update delete 'profile', to: 'profile#destroy', as: :profile_destroy put 'password', to: 'password#update', as: :password_update end
Version data entries
8 entries across 8 versions & 1 rubygems