This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-13 17:28:49 -07:00
|
|
|
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'
|
|
|
|
|
2016-11-16 08:51:02 -08:00
|
|
|
if current_user.update(user_params.except(:notification_emails))
|
2016-11-15 14:02:57 -08:00
|
|
|
redirect_to settings_preferences_path, notice: I18n.t('generic.changes_saved_msg')
|
2016-10-13 17:28:49 -07:00
|
|
|
else
|
|
|
|
render action: :show
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def user_params
|
2016-11-16 08:51:02 -08:00
|
|
|
params.require(:user).permit(:locale, notification_emails: [:follow, :reblog, :favourite, :mention])
|
2016-10-13 17:28:49 -07:00
|
|
|
end
|
|
|
|
end
|