Skip to content
Snippets Groups Projects
Commit b3ff48c9 authored by Douwe Maan's avatar Douwe Maan
Browse files

Move up delegate calls

parent 0a5b670a
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -22,6 +22,8 @@ module Ci
serialize :options
serialize :yaml_variables, Gitlab::Serializer::Ci::Variables
 
delegate :name, to: :project, prefix: true
validates :coverage, numericality: true, allow_blank: true
validates :ref, presence: true
 
Loading
Loading
@@ -233,8 +235,6 @@ module Ci
gl_project_id
end
 
delegate :name, to: :project, prefix: true
def repo_url
auth = "gitlab-ci-token:#{ensure_token!}@"
project.http_url_to_repo.sub(/^https?:\/\//) do |prefix|
Loading
Loading
Loading
Loading
@@ -14,6 +14,8 @@ module Ci
has_many :builds, foreign_key: :commit_id
has_many :trigger_requests, dependent: :destroy, foreign_key: :commit_id
 
delegate :id, to: :project, prefix: true
validates :sha, presence: { unless: :importing? }
validates :ref, presence: { unless: :importing? }
validates :status, presence: { unless: :importing? }
Loading
Loading
@@ -153,8 +155,6 @@ module Ci
builds.latest.with_artifacts_not_expired.includes(project: [:namespace])
end
 
delegate :id, to: :project, prefix: true
# For now the only user who participates is the user who triggered
def participants(_current_user = nil)
Array(user)
Loading
Loading
Loading
Loading
@@ -10,6 +10,7 @@ class CommitStatus < ActiveRecord::Base
belongs_to :user
 
delegate :commit, to: :pipeline
delegate :sha, :short_sha, to: :pipeline
 
validates :pipeline, presence: true, unless: :importing?
 
Loading
Loading
@@ -102,8 +103,6 @@ class CommitStatus < ActiveRecord::Base
end
end
 
delegate :sha, :short_sha, to: :pipeline
def before_sha
pipeline.before_sha || Gitlab::Git::BLANK_SHA
end
Loading
Loading
Loading
Loading
@@ -46,6 +46,17 @@ module Issuable
 
has_one :metrics
 
delegate :name,
:email,
to: :author,
prefix: true
delegate :name,
:email,
to: :assignee,
allow_nil: true,
prefix: true
validates :author, presence: true
validates :title, presence: true, length: { maximum: 255 }
 
Loading
Loading
@@ -72,17 +83,6 @@ module Issuable
scope :references_project, -> { references(:project) }
scope :non_archived, -> { join_project.where(projects: { archived: false }) }
 
delegate :name,
:email,
to: :author,
prefix: true
delegate :name,
:email,
to: :assignee,
allow_nil: true,
prefix: true
attr_mentionable :title, pipeline: :single_line
attr_mentionable :description
 
Loading
Loading
Loading
Loading
@@ -10,6 +10,8 @@ class Member < ActiveRecord::Base
belongs_to :user
belongs_to :source, polymorphic: true
 
delegate :name, :username, :email, to: :user, prefix: true
validates :user, presence: true, unless: :invite?
validates :source, presence: true
validates :user_id, uniqueness: { scope: [:source_type, :source_id],
Loading
Loading
@@ -73,8 +75,6 @@ class Member < ActiveRecord::Base
after_destroy :post_destroy_hook, unless: :pending?
after_commit :refresh_member_authorized_projects
 
delegate :name, :username, :email, to: :user, prefix: true
default_value_for :notification_level, NotificationSetting.levels[:global]
 
class << self
Loading
Loading
Loading
Loading
@@ -172,9 +172,11 @@ class Project < ActiveRecord::Base
accepts_nested_attributes_for :project_feature
 
delegate :name, to: :owner, allow_nil: true, prefix: true
delegate :count, to: :forks, prefix: true
delegate :members, to: :team, prefix: true
delegate :add_user, to: :team
delegate :add_guest, :add_reporter, :add_developer, :add_master, to: :team
delegate :empty_repo?, to: :repository
 
# Validations
validates :creator, presence: true, on: :create
Loading
Loading
@@ -838,8 +840,6 @@ class Project < ActiveRecord::Base
false
end
 
delegate :empty_repo?, to: :repository
def repo
repository.raw
end
Loading
Loading
@@ -1027,8 +1027,6 @@ class Project < ActiveRecord::Base
forked? && project == forked_from_project
end
 
delegate :count, to: :forks, prefix: true
def origin_merge_requests
merge_requests.where(source_project_id: self.id)
end
Loading
Loading
Loading
Loading
@@ -19,6 +19,9 @@ class ProjectWiki
@user = user
end
 
delegate :empty?, to: :pages
delegate :repository_storage_path, to: :project
def path
@project.path + '.wiki'
end
Loading
Loading
@@ -60,8 +63,6 @@ class ProjectWiki
!!repository.exists?
end
 
delegate :empty?, to: :pages
# Returns an Array of Gitlab WikiPage instances or an
# empty Array if this Wiki has no pages.
def pages
Loading
Loading
@@ -158,8 +159,6 @@ class ProjectWiki
}
end
 
delegate :repository_storage_path, to: :project
private
 
def init_repo(path_with_namespace)
Loading
Loading
Loading
Loading
@@ -14,6 +14,8 @@ module Gitlab
 
attr_accessor *SERIALIZE_KEYS # rubocop:disable Lint/AmbiguousOperator
 
delegate :tree, to: :raw_commit
def ==(other)
return false unless other.is_a?(Gitlab::Git::Commit)
 
Loading
Loading
@@ -218,8 +220,6 @@ module Gitlab
raw_commit.parents.map { |c| Gitlab::Git::Commit.new(c) }
end
 
delegate :tree, to: :raw_commit
def stats
Gitlab::Git::CommitStats.new(self)
end
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