2022-07-23 23:45:48 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module JiraConnect
|
2023-01-13 00:05:48 +05:30
|
|
|
class OauthApplicationIdsController < ApplicationController
|
2022-07-23 23:45:48 +05:30
|
|
|
feature_category :integrations
|
|
|
|
|
2023-01-13 00:05:48 +05:30
|
|
|
skip_before_action :verify_atlassian_jwt!
|
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?
|
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
jira_connect_application_key.present?
|
2022-08-13 15:12:31 +05:30
|
|
|
end
|
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
def jira_connect_application_key
|
|
|
|
Gitlab::CurrentSettings.jira_connect_application_key.presence
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|