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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/jira_connect/branches_controller.rb')
-rw-r--r--app/controllers/jira_connect/branches_controller.rb29
1 files changed, 29 insertions, 0 deletions
diff --git a/app/controllers/jira_connect/branches_controller.rb b/app/controllers/jira_connect/branches_controller.rb
new file mode 100644
index 00000000000..12ea6560e3a
--- /dev/null
+++ b/app/controllers/jira_connect/branches_controller.rb
@@ -0,0 +1,29 @@
+# frozen_string_literal: true
+
+# NOTE: This controller does not inherit from JiraConnect::ApplicationController
+# because we don't receive a JWT for this action, so we rely on standard GitLab authentication.
+class JiraConnect::BranchesController < ApplicationController
+ feature_category :integrations
+
+ def new
+ @new_branch_data = new_branch_data
+ end
+
+ private
+
+ def initial_branch_name
+ return unless params[:issue_key].present?
+
+ Issue.to_branch_name(
+ params[:issue_key],
+ params[:issue_summary]
+ )
+ end
+
+ def new_branch_data
+ {
+ initial_branch_name: initial_branch_name,
+ success_state_svg_path: ActionController::Base.helpers.image_path('illustrations/merge_requests.svg')
+ }
+ end
+end