Commit 3ea2cfa3 authored by Rémy Coutable's avatar Rémy Coutable

Merge branch 'issue_10672' into 'master'

Load Gitlab::Jira::Middleware only if it exists

Closes #10672

See merge request gitlab-org/gitlab-ee!10459
parents e8411f02 82055bb7
# Treats JIRA DVCS user agent requests in order to be successfully handled
# frozen_string_literal: true
# Changes JIRA DVCS user agent requests in order to be successfully handled
# by our API.
Rails.application.config.middleware.use(Gitlab::Jira::Middleware)
#
# Gitlab::Jira::Middleware is only defined on EE
#
# Use safe_constantize because the class may exist but has not been loaded yet
if "Gitlab::Jira::Middleware".safe_constantize
Rails.application.config.middleware.use(Gitlab::Jira::Middleware)
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment