Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/profiles/accounts_controller.rb')
-rw-r--r--app/controllers/profiles/accounts_controller.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/app/controllers/profiles/accounts_controller.rb b/app/controllers/profiles/accounts_controller.rb
deleted file mode 100644
index 9bd34fe2261..00000000000
--- a/app/controllers/profiles/accounts_controller.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-class Profiles::AccountsController < ApplicationController
- layout "profile"
-
- 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