gitlab-org--gitlab-foss/app/controllers/profiles/accounts_controller.rb
James Edwards-Jones 84352177d4 Replace @user with current_user on Account page
Previously we used @user, but this changed to local_assigns[:user]
so we could pass a second variable to the view from an EE module

Since we were already using current_user librally there it makes sense
to replace the remaining usages.

See: https://docs.gitlab.com/ee/development/module_with_instance_variables.html
2018-12-04 15:14:34 +00:00

32 lines
673 B
Ruby

# frozen_string_literal: true
class Profiles::AccountsController < Profiles::ApplicationController
include AuthHelper
def show
render(locals: show_view_variables)
end
# rubocop: disable CodeReuse/ActiveRecord
def unlink
provider = params[:provider]
identity = current_user.identities.find_by(provider: provider)
return render_404 unless identity
if unlink_allowed?(provider)
identity.destroy
else
flash[:alert] = "You are not allowed to unlink your primary login account"
end
redirect_to profile_account_path
end
# rubocop: enable CodeReuse/ActiveRecord
private
def show_view_variables
{}
end
end