2022-07-23 23:45:48 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module JiraConnect
|
|
|
|
class OauthApplicationIdsController < ::ApplicationController
|
|
|
|
feature_category :integrations
|
|
|
|
|
|
|
|
skip_before_action :authenticate_user!
|
2022-08-13 15:12:31 +05:30
|
|
|
skip_before_action :verify_authenticity_token
|
2022-07-23 23:45:48 +05:30
|
|
|
|
|
|
|
def show
|
2022-08-13 15:12:31 +05:30
|
|
|
if show_application_id?
|
2022-07-23 23:45:48 +05:30
|
|
|
render json: { application_id: jira_connect_application_key }
|
|
|
|
else
|
|
|
|
head :not_found
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2022-08-13 15:12:31 +05:30
|
|
|
def show_application_id?
|
|
|
|
return if Gitlab.com?
|
|
|
|
|
|
|
|
Feature.enabled?(:jira_connect_oauth_self_managed) && jira_connect_application_key.present?
|
|
|
|
end
|
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
def jira_connect_application_key
|
|
|
|
Gitlab::CurrentSettings.jira_connect_application_key.presence
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|