2011-10-08 23:36:38 +02:00
|
|
|
class ProfileController < ApplicationController
|
2011-11-02 16:21:17 +01:00
|
|
|
layout "profile"
|
2011-10-08 23:36:38 +02:00
|
|
|
def show
|
|
|
|
@user = current_user
|
|
|
|
end
|
|
|
|
|
2011-12-20 21:47:09 +01:00
|
|
|
def design
|
|
|
|
@user = current_user
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2011-10-20 00:34:05 +02:00
|
|
|
@user = current_user
|
|
|
|
@user.update_attributes(params[:user])
|
2011-12-20 21:47:09 +01:00
|
|
|
redirect_to :back
|
2011-10-20 00:34:05 +02:00
|
|
|
end
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
def password
|
|
|
|
@user = current_user
|
|
|
|
end
|
|
|
|
|
|
|
|
def password_update
|
2011-10-26 15:46:25 +02:00
|
|
|
params[:user].reject!{ |k, v| k != "password" && k != "password_confirmation"}
|
2011-10-08 23:36:38 +02:00
|
|
|
@user = current_user
|
|
|
|
|
|
|
|
if @user.update_attributes(params[:user])
|
|
|
|
flash[:notice] = "Password was successfully updated. Please login with it"
|
|
|
|
redirect_to new_user_session_path
|
|
|
|
else
|
|
|
|
render :action => "password"
|
|
|
|
end
|
|
|
|
end
|
2011-11-15 14:08:20 +01:00
|
|
|
|
|
|
|
def reset_private_token
|
|
|
|
current_user.reset_authentication_token!
|
|
|
|
redirect_to profile_password_path
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|