debian-mirror-gitlab/app/controllers/groups/shared_projects_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2018-11-08 19:23:39 +05:30
module Groups
class SharedProjectsController < Groups::ApplicationController
respond_to :json
before_action :group
skip_cross_project_access_check :index
2021-01-03 14:25:43 +05:30
feature_category :subgroups
2022-07-16 23:28:13 +05:30
urgency :low, [:index]
2021-01-03 14:25:43 +05:30
2018-11-08 19:23:39 +05:30
def index
shared_projects = GroupProjectsFinder.new(
group: group,
current_user: current_user,
params: finder_params,
options: { only_shared: true }
).execute
serializer = GroupChildSerializer.new(current_user: current_user)
.with_pagination(request, response)
render json: serializer.represent(shared_projects)
end
private
def finder_params
@finder_params ||= begin
2021-04-29 21:17:54 +05:30
# Make the `search` param consistent for the frontend,
# which will be using `filter`.
params[:search] ||= params[:filter] if params[:filter]
# Don't show archived projects
params[:non_archived] = true
params.permit(:sort, :search, :non_archived)
end
2018-11-08 19:23:39 +05:30
end
end
end