Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
fded6aa37338
Commit
fded6aa3
authored
Feb 22, 2017
by
Douwe Maan
Browse files
Move up delegate calls
parent
601709274b00
Changes
8
Hide whitespace changes
Inline
Side-by-side
app/models/ci/build.rb
View file @
fded6aa3
...
...
@@ -22,6 +22,8 @@
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
...
...
@@ -233,8 +235,6 @@
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
|
...
...
app/models/ci/pipeline.rb
View file @
fded6aa3
...
...
@@ -14,6 +14,8 @@
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?
}
...
...
@@ -153,8 +155,6 @@
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
)
...
...
app/models/commit_status.rb
View file @
fded6aa3
...
...
@@ -10,6 +10,7 @@
belongs_to
:user
delegate
:commit
,
to: :pipeline
delegate
:sha
,
:short_sha
,
to: :pipeline
validates
:pipeline
,
presence:
true
,
unless: :importing?
...
...
@@ -102,8 +103,6 @@
end
end
delegate
:sha
,
:short_sha
,
to: :pipeline
def
before_sha
pipeline
.
before_sha
||
Gitlab
::
Git
::
BLANK_SHA
end
...
...
app/models/concerns/issuable.rb
View file @
fded6aa3
...
...
@@ -46,6 +46,17 @@
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
}
...
...
@@ -72,17 +83,6 @@
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
...
...
app/models/member.rb
View file @
fded6aa3
...
...
@@ -10,6 +10,8 @@
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
],
...
...
@@ -73,8 +75,6 @@
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
...
...
app/models/project.rb
View file @
fded6aa3
...
...
@@ -172,6 +172,7 @@
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
...
...
@@ -175,6 +176,7 @@
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
...
...
@@ -838,8 +840,6 @@
false
end
delegate
:empty_repo?
,
to: :repository
def
repo
repository
.
raw
end
...
...
@@ -1027,8 +1027,6 @@
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
...
...
app/models/project_wiki.rb
View file @
fded6aa3
...
...
@@ -19,6 +19,9 @@
@user
=
user
end
delegate
:empty?
,
to: :pages
delegate
:repository_storage_path
,
to: :project
def
path
@project
.
path
+
'.wiki'
end
...
...
@@ -60,8 +63,6 @@
!!
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
...
...
@@ -158,8 +159,6 @@
}
end
delegate
:repository_storage_path
,
to: :project
private
def
init_repo
(
path_with_namespace
)
...
...
lib/gitlab/git/commit.rb
View file @
fded6aa3
...
...
@@ -14,6 +14,8 @@
attr_accessor
*
SERIALIZE_KEYS
# rubocop:disable Lint/AmbiguousOperator
delegate
:tree
,
to: :raw_commit
def
==
(
other
)
return
false
unless
other
.
is_a?
(
Gitlab
::
Git
::
Commit
)
...
...
@@ -218,8 +220,6 @@
raw_commit
.
parents
.
map
{
|
c
|
Gitlab
::
Git
::
Commit
.
new
(
c
)
}
end
delegate
:tree
,
to: :raw_commit
def
stats
Gitlab
::
Git
::
CommitStats
.
new
(
self
)
end
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment