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

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

14 lines
425 B
Ruby
Raw Normal View History

2022-05-07 20:08:51 +05:30
# 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
2022-10-11 01:57:18 +05:30
skip_before_action :authenticate_user!
2022-05-07 20:08:51 +05:30
def index; end
end