Customizing devise views and controllers
This commit is contained in:
parent
7e93da3f8d
commit
6045b6cb18
19 changed files with 398 additions and 17 deletions
|
@ -2,7 +2,11 @@ Rails.application.routes.draw do
|
|||
get '.well-known/host-meta', to: 'xrd#host_meta', as: :host_meta
|
||||
get '.well-known/webfinger', to: 'xrd#webfinger', as: :webfinger
|
||||
|
||||
devise_for :users, path: 'auth'
|
||||
devise_for :users, path: 'auth', controllers: {
|
||||
sessions: 'auth/sessions',
|
||||
registrations: 'auth/registrations',
|
||||
passwords: 'auth/passwords'
|
||||
}
|
||||
|
||||
resources :accounts, path: 'users', only: [:show], param: :username do
|
||||
resources :stream_entries, path: 'updates', only: [:show]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue