Sha256: 9a704ab2e63b47876b7e4f6fd0bde6709f8d87088c8757ad4de0aac5a9b428f9
Contents?: true
Size: 754 Bytes
Versions: 4
Compression:
Stored size: 754 Bytes
Contents
class UsersController < ApplicationController before_action :authenticate! before_action :set_user! def show @messages = current_user.messages.to_a @watched_discussions = current_user.watched_discussions_in_organization end def update current_user.update_and_notify! user_params redirect_to root_path, notice: I18n.t(:user_data_updated) end def unsubscribe user_id = User.unsubscription_verifier.verify(params[:id]) User.find(user_id).unsubscribe_from_reminders! redirect_to root_path, notice: t(:unsubscribed_successfully) end private def validate_user_profile! end def user_params params.require(:user).permit(User.profile_fields) end def set_user! @user = current_user end end
Version data entries
4 entries across 4 versions & 1 rubygems