2015-04-30 13:06:18 -04:00
|
|
|
class Profiles::NotificationsController < Profiles::ApplicationController
|
2013-03-27 13:04:29 -04:00
|
|
|
def show
|
2016-06-06 11:50:54 -04:00
|
|
|
@user = current_user
|
2016-06-14 14:36:36 -04:00
|
|
|
@group_notifications = current_user.notification_settings.for_groups.order(:id)
|
|
|
|
@project_notifications = current_user.notification_settings.for_projects.order(:id)
|
2016-06-06 11:50:54 -04:00
|
|
|
@global_notification_setting = current_user.global_notification_setting
|
2013-03-27 13:04:29 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2016-06-14 14:36:36 -04:00
|
|
|
if current_user.update_attributes(user_params)
|
2016-03-29 12:59:03 -04:00
|
|
|
flash[:notice] = "Notification settings saved"
|
|
|
|
else
|
|
|
|
flash[:alert] = "Failed to save new settings"
|
2015-02-06 18:23:58 -05:00
|
|
|
end
|
2016-03-29 12:59:03 -04:00
|
|
|
|
|
|
|
redirect_back_or_default(default: profile_notifications_path)
|
2015-02-06 18:23:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def user_params
|
2016-06-09 15:33:31 -04:00
|
|
|
params.require(:user).permit(:notification_email)
|
2013-03-27 13:04:29 -04:00
|
|
|
end
|
|
|
|
end
|