Merge branch 'user_delete_account' of /home/git/repositories/gitlab/gitlabhq
This commit is contained in:
commit
06dd530ede
3 changed files with 66 additions and 1 deletions
|
@ -1,6 +1,17 @@
|
|||
class RegistrationsController < Devise::RegistrationsController
|
||||
before_filter :signup_enabled?
|
||||
|
||||
def destroy
|
||||
if current_user.owned_projects.count > 0
|
||||
redirect_to account_profile_path, alert: "Remove projects and groups before removing account." and return
|
||||
end
|
||||
current_user.destroy
|
||||
|
||||
respond_to do |format|
|
||||
format.html { redirect_to new_user_session_path, notice: "Account successfully removed." }
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def signup_enabled?
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue