Sha256: da6eb2443036379d539e545fa83e8f62c9ef843ad3b3fb28a05b927b7d644f67
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 KB
Contents
class UsersController < ApplicationController include WithUserParams before_action :authenticate!, except: :terms before_action :set_user! skip_before_action :validate_accepted_role_terms! 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 current_user.accept_profile_terms! flash.notice = I18n.t(:user_data_updated) redirect_after! :profile_completion, fallback_location: user_path end def accept_profile_terms current_user.accept_profile_terms! redirect_to root_path, notice: I18n.t(:terms_accepted) end def terms @profile_terms ||= Term.profile_terms_for(current_user) 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 def permissible_params super << [:avatar_id, :avatar_type] end private def validate_user_profile! end def set_user! @user = current_user end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mumuki-laboratory-8.1.0 | app/controllers/users_controller.rb |