Explictly require Gitlab::Utils in ProjectFeaturesCompatibility

For some reason Rails does not require it automatically when invoked via
rake task which cause tasks like seed_fu fail

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
Dmitriy Zaporozhets 2017-12-22 11:40:56 +02:00
parent 3ee5fd156e
commit 8c0e571a2b
No known key found for this signature in database
GPG Key ID: 627C5F589F467F17
1 changed files with 1 additions and 0 deletions

View File

@ -2,6 +2,7 @@
#
# After migrating issues_enabled merge_requests_enabled builds_enabled snippets_enabled and wiki_enabled
# fields to a new table "project_features", support for the old fields is still needed in the API.
require 'gitlab/utils'
module ProjectFeaturesCompatibility
extend ActiveSupport::Concern