2016-11-16 00:56:29 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-14 09:28:49 +09:00
|
|
|
class Settings::PreferencesController < ApplicationController
|
|
|
|
layout 'auth'
|
|
|
|
|
|
|
|
before_action :authenticate_user!
|
|
|
|
|
2016-12-07 02:03:30 +09:00
|
|
|
def show; end
|
2016-10-14 09:28:49 +09:00
|
|
|
|
|
|
|
def update
|
2017-01-13 04:46:24 +09:00
|
|
|
current_user.settings['notification_emails'] = {
|
|
|
|
follow: user_params[:notification_emails][:follow] == '1',
|
|
|
|
follow_request: user_params[:notification_emails][:follow_request] == '1',
|
|
|
|
reblog: user_params[:notification_emails][:reblog] == '1',
|
|
|
|
favourite: user_params[:notification_emails][:favourite] == '1',
|
|
|
|
mention: user_params[:notification_emails][:mention] == '1',
|
|
|
|
}
|
|
|
|
|
|
|
|
current_user.settings['interactions'] = {
|
|
|
|
must_be_follower: user_params[:interactions][:must_be_follower] == '1',
|
|
|
|
must_be_following: user_params[:interactions][:must_be_following] == '1',
|
|
|
|
}
|
2016-11-25 21:13:16 +09:00
|
|
|
|
|
|
|
if current_user.update(user_params.except(:notification_emails, :interactions))
|
2016-11-16 07:02:57 +09:00
|
|
|
redirect_to settings_preferences_path, notice: I18n.t('generic.changes_saved_msg')
|
2016-10-14 09:28:49 +09:00
|
|
|
else
|
|
|
|
render action: :show
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def user_params
|
2016-12-27 06:04:16 +09:00
|
|
|
params.require(:user).permit(:locale, notification_emails: [:follow, :follow_request, :reblog, :favourite, :mention], interactions: [:must_be_follower, :must_be_following])
|
2016-10-14 09:28:49 +09:00
|
|
|
end
|
|
|
|
end
|