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:
authorJan Provaznik <jprovaznik@gitlab.com>2018-05-07 16:49:32 +0300
committerJan Provaznik <jprovaznik@gitlab.com>2018-05-16 09:58:07 +0300
commit32e22468300e3a52c82a855a01fc3983473107e0 (patch)
treebedc55c548a0083183c346efbc5f7d6809af1f48 /app/models/project.rb
parentc81a37c1d3f864cf0a00386dab29da78f222e3a5 (diff)
Changed order of include
Diffstat (limited to 'app/models/project.rb')
-rw-r--r--app/models/project.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/project.rb b/app/models/project.rb
index 0b0d653c4af..0975e64e995 100644
--- a/app/models/project.rb
+++ b/app/models/project.rb
@@ -4,7 +4,6 @@ class Project < ActiveRecord::Base
include Gitlab::ConfigHelper
include Gitlab::ShellAdapter
include Gitlab::VisibilityLevel
- include WithUploads
include AccessRequestable
include Avatarable
include CacheMarkdownField
@@ -24,6 +23,7 @@ class Project < ActiveRecord::Base
include ::Gitlab::Utils::StrongMemoize
include ChronicDurationAttribute
include FastDestroyAll::Helpers
+ include WithUploads
extend Gitlab::ConfigHelper