registrations_controller.rb 565 字节
Newer Older
M
Marin Jankovski 已提交
1 2 3
class RegistrationsController < Devise::RegistrationsController
  before_filter :signup_enabled?

M
Marin Jankovski 已提交
4 5 6 7 8 9 10 11 12 13 14
  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

M
Marin Jankovski 已提交
15 16 17 18 19 20
  private

  def signup_enabled?
    redirect_to new_user_session_path unless Gitlab.config.gitlab.signup_enabled
  end
end