34 lines
788 B
Ruby
34 lines
788 B
Ruby
# frozen_string_literal: true
|
|
|
|
class JiraConnect::EventsController < JiraConnect::ApplicationController
|
|
# See https://developer.atlassian.com/cloud/jira/software/app-descriptor/#lifecycle
|
|
|
|
skip_before_action :verify_atlassian_jwt!, only: :installed
|
|
before_action :verify_qsh_claim!, only: :uninstalled
|
|
|
|
def installed
|
|
return head :ok if atlassian_jwt_valid?
|
|
|
|
installation = JiraConnectInstallation.new(install_params)
|
|
|
|
if installation.save
|
|
head :ok
|
|
else
|
|
head :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
def uninstalled
|
|
if current_jira_installation.destroy
|
|
head :ok
|
|
else
|
|
head :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def install_params
|
|
params.permit(:clientKey, :sharedSecret, :baseUrl).transform_keys(&:underscore)
|
|
end
|
|
end
|