debian-mirror-gitlab/config/initializers/jira.rb

12 lines
372 B
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2019-09-30 21:07:59 +05:30
# Changes Jira DVCS user agent requests in order to be successfully handled
2019-07-07 11:18:12 +05:30
# by our API.
#
# 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