Welcome to mirror list, hosted at ThFree Co, Russian Federation.

oauth_callbacks_controller.rb « jira_connect « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f603a563402e23c9edac9504bd44ce53a05f5189 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

# This controller's role is to serve as a landing page
# that users get redirected to after installing and authenticating
# The GitLab.com for Jira App (https://marketplace.atlassian.com/apps/1221011/gitlab-com-for-jira-cloud)
#
class JiraConnect::OauthCallbacksController < ApplicationController
  feature_category :integrations

  def index; end
end