3715a0f29b
This was broken in 70f5291808
as a result of introducing the ability to filter by current user.
Closes #2320
51 lines
1.3 KiB
Ruby
51 lines
1.3 KiB
Ruby
class AutocompleteController < ApplicationController
|
|
skip_before_action :authenticate_user!, only: [:users]
|
|
|
|
def users
|
|
begin
|
|
@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
|
|
elsif current_user
|
|
User.all
|
|
end
|
|
rescue ActiveRecord::RecordNotFound
|
|
if current_user
|
|
return render json: {}, status: 404
|
|
end
|
|
end
|
|
|
|
if @users.nil? && current_user.nil?
|
|
authenticate_user!
|
|
end
|
|
|
|
@users ||= User.none
|
|
@users = @users.search(params[:search]) if params[:search].present?
|
|
@users = @users.active
|
|
@users = @users.page(params[:page]).per(PER_PAGE)
|
|
|
|
unless params[:search].present?
|
|
# Include current user if available to filter by "Me"
|
|
if params[:current_user] && current_user
|
|
@users = [*@users, current_user].uniq
|
|
end
|
|
end
|
|
|
|
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
|