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

users_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: 569dc42fed32c6a8659a07d16678387dbb6008e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class JiraConnect::UsersController < ApplicationController
  feature_category :integrations

  layout 'signup_onboarding'

  def show
    @jira_app_link = params.delete(:return_to)
  end
end