debian-mirror-gitlab/app/controllers/jira_connect/public_keys_controller.rb

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

25 lines
566 B
Ruby
Raw Normal View History

2022-11-25 23:54:43 +05:30
# frozen_string_literal: true
module JiraConnect
class PublicKeysController < ::ApplicationController
# This is not inheriting from JiraConnect::Application controller because
# it doesn't need to handle JWT authentication.
feature_category :integrations
skip_before_action :authenticate_user!
def show
return render_404 if Feature.disabled?(:jira_connect_oauth_self_managed) || !Gitlab.com?
render plain: public_key.key
end
private
def public_key
JiraConnect::PublicKey.find(params[:id])
end
end
end