hhh
This commit is contained in:
parent
03c71e30e5
commit
7ab98b95e1
|
@ -0,0 +1,15 @@
|
|||
class ApplicationController < ActionController::Base
|
||||
# Prevent CSRF attacks by raising an exception.
|
||||
# For APIs, you may want to use :null_session instead.
|
||||
protect_from_forgery with: :exception
|
||||
|
||||
before_filter :configure_permitted_parameters, if: :devise_controller?
|
||||
|
||||
protected
|
||||
|
||||
def configure_permitted_parameters
|
||||
devise_parameter_sanitizer.for(:sign_up) { |u| u.permit(:screen_name, :email, :password, :password_confirmation, :remember_me) }
|
||||
devise_parameter_sanitizer.for(:sign_in) { |u| u.permit(:login, :screen_name, :email, :password, :remember_me) }
|
||||
devise_parameter_sanitizer.for(:account_update) { |u| u.permit(:screen_name, :email, :password, :password_confirmation, :current_password) }
|
||||
end
|
||||
end
|
|
@ -4,5 +4,13 @@ class UserController < ApplicationController
|
|||
end
|
||||
|
||||
def edit
|
||||
|
||||
end
|
||||
|
||||
def update
|
||||
params.permit(:display_name)
|
||||
current_user.display_name = params[:display_name]
|
||||
current_user.save!
|
||||
redirect_to edit_user_profile_path
|
||||
end
|
||||
end
|
||||
|
|
|
@ -15,13 +15,14 @@ Rails.application.routes.draw do
|
|||
post '/user/create' => 'devise/registrations#create', as: :user_registration
|
||||
get '/sign_up' => 'devise/registrations#new', as: :new_user_registration
|
||||
get '/settings/account' => 'devise/registrations#edit', as: :edit_user_registration
|
||||
patch '/settings/account' => 'devise/registrations#update'
|
||||
patch '/settings/account' => 'devise/registrations#update', as: :update_user_registration
|
||||
put '/settings/account' => 'devise/registrations#update'
|
||||
delete '/settings/account' => 'devise/registrations#destroy'
|
||||
end
|
||||
|
||||
match '/settings/profile', to: 'user#edit', via: 'get', as: :edit_user_profile
|
||||
|
||||
match '/settings/profile', to: 'user#update', via: 'patch', as: :update_user_profile
|
||||
|
||||
match '/user/:username', to: 'user#show', via: 'get'
|
||||
match '/@:username', to: 'user#show', via: 'get', as: :show_user_profile_at
|
||||
match '/:username', to: 'user#show', via: 'get', as: :show_user_profile
|
||||
|
|
Loading…
Reference in New Issue