12 lines
242 B
Ruby
12 lines
242 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class JiraConnect::UsersController < ApplicationController
|
||
|
feature_category :integrations
|
||
|
|
||
|
layout 'devise_experimental_onboarding_issues'
|
||
|
|
||
|
def show
|
||
|
@jira_app_link = params.delete(:return_to)
|
||
|
end
|
||
|
end
|