Skip to content
Snippets Groups Projects
Commit 32e22468 authored by Jan Provaznik's avatar Jan Provaznik
Browse files

Changed order of include

parent c81a37c1
No related branches found
No related tags found
No related merge requests found
class Appearance < ActiveRecord::Base
include WithUploads
include CacheMarkdownField
include AfterCommitQueue
include ObjectStorage::BackgroundMove
include WithUploads
 
cache_markdown_field :description
cache_markdown_field :new_project_guidelines
Loading
Loading
Loading
Loading
@@ -2,7 +2,6 @@ require 'carrierwave/orm/activerecord'
 
class Group < Namespace
include Gitlab::ConfigHelper
include WithUploads
include AfterCommitQueue
include AccessRequestable
include Avatarable
Loading
Loading
@@ -11,6 +10,7 @@ class Group < Namespace
include LoadedInGroupList
include GroupDescendant
include TokenAuthenticatable
include WithUploads
 
has_many :group_members, -> { where(requested_at: nil) }, dependent: :destroy, as: :source # rubocop:disable Cop/ActiveRecordDependent
alias_method :members, :group_members
Loading
Loading
Loading
Loading
@@ -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
Loading
Loading
@@ -24,6 +23,7 @@ class Project < ActiveRecord::Base
include ::Gitlab::Utils::StrongMemoize
include ChronicDurationAttribute
include FastDestroyAll::Helpers
include WithUploads
 
extend Gitlab::ConfigHelper
 
Loading
Loading
Loading
Loading
@@ -3,7 +3,6 @@ require 'carrierwave/orm/activerecord'
class User < ActiveRecord::Base
extend Gitlab::ConfigHelper
 
include WithUploads
include Gitlab::ConfigHelper
include Gitlab::SQL::Pattern
include AfterCommitQueue
Loading
Loading
@@ -18,6 +17,7 @@ class User < ActiveRecord::Base
include IgnorableColumn
include BulkMemberAccessLoad
include BlocksJsonSerialization
include WithUploads
 
DEFAULT_NOTIFICATION_LEVEL = :participating
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment