BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
1f98beba
Commit
1f98beba
authored
Jun 08, 2017
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'clean-up-project-for-merge-conflicts' into 'master'
Clean up the Project model to reduce conflicts See merge request !11967
parents
8ce11fc3
13bd4b02
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
16 deletions
+21
-16
project.rb
app/models/project.rb
+21
-16
No files found.
app/models/project.rb
View file @
1f98beba
...
...
@@ -63,16 +63,6 @@ class Project < ActiveRecord::Base
# update visibility_level of forks
after_update
:update_forks_visibility_level
def
update_forks_visibility_level
return
unless
visibility_level
<
visibility_level_was
forks
.
each
do
|
forked_project
|
if
forked_project
.
visibility_level
>
visibility_level
forked_project
.
visibility_level
=
visibility_level
forked_project
.
save!
end
end
end
after_validation
:check_pending_delete
...
...
@@ -165,7 +155,7 @@ class Project < ActiveRecord::Base
has_many
:todos
,
dependent: :destroy
has_many
:notification_settings
,
dependent: :destroy
,
as: :source
has_one
:import_data
,
dependent: :delete
,
class_name:
"ProjectImportData"
has_one
:import_data
,
dependent: :delete
,
class_name:
'ProjectImportData'
has_one
:project_feature
,
dependent: :destroy
has_one
:statistics
,
class_name:
'ProjectStatistics'
,
dependent: :delete
has_many
:container_repositories
,
dependent: :destroy
...
...
@@ -488,7 +478,11 @@ class Project < ActiveRecord::Base
ProjectCacheWorker
.
perform_async
(
self
.
id
)
end
self
.
import_data
&
.
destroy
remove_import_data
end
def
remove_import_data
import_data
&
.
destroy
end
def
import_url
=
(
value
)
...
...
@@ -1060,6 +1054,17 @@ class Project < ActiveRecord::Base
!!
repository
.
exists?
end
def
update_forks_visibility_level
return
unless
visibility_level
<
visibility_level_was
forks
.
each
do
|
forked_project
|
if
forked_project
.
visibility_level
>
visibility_level
forked_project
.
visibility_level
=
visibility_level
forked_project
.
save!
end
end
end
def
create_wiki
ProjectWiki
.
new
(
self
,
self
.
owner
).
wiki
true
...
...
@@ -1068,6 +1073,10 @@ class Project < ActiveRecord::Base
false
end
def
wiki
@wiki
||=
ProjectWiki
.
new
(
self
,
self
.
owner
)
end
def
jira_tracker_active?
jira_tracker?
&&
jira_service
.
active
end
...
...
@@ -1190,10 +1199,6 @@ class Project < ActiveRecord::Base
end
end
def
wiki
@wiki
||=
ProjectWiki
.
new
(
self
,
self
.
owner
)
end
def
running_or_pending_build_count
(
force:
false
)
Rails
.
cache
.
fetch
([
'projects'
,
id
,
'running_or_pending_build_count'
],
force:
force
)
do
builds
.
running_or_pending
.
count
(
:all
)
...
...
Write
Preview
Markdown
is supported
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