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/autocomplete_controller.rb')
-rw-r--r--app/controllers/autocomplete_controller.rb30
1 files changed, 0 insertions, 30 deletions
diff --git a/app/controllers/autocomplete_controller.rb b/app/controllers/autocomplete_controller.rb
deleted file mode 100644
index 11af9895261..00000000000
--- a/app/controllers/autocomplete_controller.rb
+++ /dev/null
@@ -1,30 +0,0 @@
-class AutocompleteController < ApplicationController
- def users
- @users =
- if params[:project_id].present?
- project = Project.find(params[:project_id])
-
- if can?(current_user, :read_project, project)
- project.team.users
- end
- elsif params[:group_id]
- group = Group.find(params[:group_id])
-
- if can?(current_user, :read_group, group)
- group.users
- end
- else
- User.all
- end
-
- @users = @users.search(params[:search]) if params[:search].present?
- @users = @users.active
- @users = @users.page(params[:page]).per(PER_PAGE)
- render json: @users, only: [:name, :username, :id], methods: [:avatar_url]
- end
-
- def user
- @user = User.find(params[:id])
- render json: @user, only: [:name, :username, :id], methods: [:avatar_url]
- end
-end