13fc0efa57
The current state of group issue boards does not show the "Add issues" button on the UI for users that are reporters of group child projects.
13 lines
289 B
Ruby
13 lines
289 B
Ruby
# frozen_string_literal: true
|
|
|
|
module FindGroupProjects
|
|
extend ActiveSupport::Concern
|
|
|
|
def group_projects_for(user:, group:)
|
|
GroupProjectsFinder.new(
|
|
group: group,
|
|
current_user: user,
|
|
options: { include_subgroups: true, only_owned: true }
|
|
).execute
|
|
end
|
|
end
|