debian-mirror-gitlab/app/helpers/jira_connect_helper.rb

14 lines
419 B
Ruby
Raw Normal View History

2021-03-08 18:12:59 +05:30
# frozen_string_literal: true
module JiraConnectHelper
2021-03-11 19:13:27 +05:30
def jira_connect_app_data(subscriptions)
skip_groups = subscriptions.map(&:namespace_id)
2021-03-08 18:12:59 +05:30
{
2021-03-11 19:13:27 +05:30
groups_path: api_v4_groups_path(params: { min_access_level: Gitlab::Access::MAINTAINER, skip_groups: skip_groups }),
subscriptions_path: jira_connect_subscriptions_path,
users_path: current_user ? nil : jira_connect_users_path
2021-03-08 18:12:59 +05:30
}
end
end