debian-mirror-gitlab/app/controllers/profiles/accounts_controller.rb
2015-09-11 14:41:01 +05:30

12 lines
269 B
Ruby

class Profiles::AccountsController < Profiles::ApplicationController
def show
@user = current_user
end
def unlink
provider = params[:provider]
current_user.identities.find_by(provider: provider).destroy
redirect_to profile_account_path
end
end