Require valid invitation to start sign-up process
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-12-02 19:20:01 +01:00
parent 69b99711e5
commit 7aadb5cb51
15 changed files with 201 additions and 3 deletions

View File

@@ -4,10 +4,12 @@ Rails.application.routes.draw do
get 'welcome', to: 'welcome#index'
get 'check_your_email', to: 'welcome#check_your_email'
get 'signup', to: 'signup#index'
get 'settings', to: 'settings#index'
post 'settings_reset_password', to: 'settings#reset_password'
resources :invitations, only: ['index', 'create', 'destroy']
resources :invitations, only: ['index', 'show', 'create', 'destroy']
namespace :admin do
root to: 'dashboard#index'