diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-12-02 13:29:24 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-12-02 13:29:24 +0200 |
commit | 46bf3a094988327b08c88006c694f0a0a15f7da2 (patch) | |
tree | 82458b24bc2d77b1f711bc6579d39080748ab972 /app/controllers/profiles_controller.rb | |
parent | 2be5e6d44347dfb6374b4b2c87a953da06d6167d (diff) | |
download | gitlab-ce-46bf3a094988327b08c88006c694f0a0a15f7da2.tar.gz |
Refactored profile to resource. Added missing flash notice on successfull updated. Update username via ajax
Diffstat (limited to 'app/controllers/profiles_controller.rb')
-rw-r--r-- | app/controllers/profiles_controller.rb | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/app/controllers/profiles_controller.rb b/app/controllers/profiles_controller.rb new file mode 100644 index 00000000000..1d1efb16f04 --- /dev/null +++ b/app/controllers/profiles_controller.rb @@ -0,0 +1,66 @@ +class ProfilesController < ApplicationController + before_filter :user + layout 'profile' + + def show + end + + def design + end + + def account + end + + def update + if @user.update_attributes(params[:user]) + flash[:notice] = "Profile was successfully updated" + else + flash[:alert] = "Failed to update profile" + end + + respond_to do |format| + format.html { redirect_to :back } + format.js + end + end + + def token + end + + def update_password + params[:user].reject!{ |k, v| k != "password" && k != "password_confirmation"} + + if @user.update_attributes(params[:user]) + flash[:notice] = "Password was successfully updated. Please login with it" + redirect_to new_user_session_path + else + render 'account' + end + end + + def reset_private_token + if current_user.reset_authentication_token! + flash[:notice] = "Token was successfully updated" + end + + redirect_to account_profile_path + end + + def history + @events = current_user.recent_events.page(params[:page]).per(20) + end + + def update_username + @user.update_attributes(username: params[:user][:username]) + + respond_to do |format| + format.js + end + end + + private + + def user + @user = current_user + end +end |