E-mail preferences page
This commit is contained in:
parent
9b195f5dd3
commit
7a6d95f70c
13 changed files with 107 additions and 14 deletions
27
app/controllers/settings/preferences_controller.rb
Normal file
27
app/controllers/settings/preferences_controller.rb
Normal file
|
@ -0,0 +1,27 @@
|
|||
class Settings::PreferencesController < ApplicationController
|
||||
layout 'auth'
|
||||
|
||||
before_action :authenticate_user!
|
||||
|
||||
def show
|
||||
end
|
||||
|
||||
def update
|
||||
current_user.settings(:notification_emails).follow = user_params[:notification_emails][:follow] == '1'
|
||||
current_user.settings(:notification_emails).reblog = user_params[:notification_emails][:reblog] == '1'
|
||||
current_user.settings(:notification_emails).favourite = user_params[:notification_emails][:favourite] == '1'
|
||||
current_user.settings(:notification_emails).mention = user_params[:notification_emails][:mention] == '1'
|
||||
|
||||
if current_user.save
|
||||
redirect_to settings_preferences_path, notice: 'Changes successfully saved!'
|
||||
else
|
||||
render action: :show
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def user_params
|
||||
params.require(:user).permit(notification_emails: [:follow, :reblog, :favourite, :mention])
|
||||
end
|
||||
end
|
27
app/controllers/settings/profiles_controller.rb
Normal file
27
app/controllers/settings/profiles_controller.rb
Normal file
|
@ -0,0 +1,27 @@
|
|||
class Settings::ProfilesController < ApplicationController
|
||||
layout 'auth'
|
||||
|
||||
before_action :authenticate_user!
|
||||
before_action :set_account
|
||||
|
||||
def show
|
||||
end
|
||||
|
||||
def update
|
||||
if @account.update(account_params)
|
||||
redirect_to settings_profile_path, notice: 'Changes successfully saved!'
|
||||
else
|
||||
render action: :show
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def account_params
|
||||
params.require(:account).permit(:display_name, :note, :avatar, :header)
|
||||
end
|
||||
|
||||
def set_account
|
||||
@account = current_user.account
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue