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
25f68a71
Unverified
Commit
25f68a71
authored
Mar 14, 2014
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Project must have namespace for Project#find_with_namespace
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
17a9ecf8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
9 deletions
+7
-9
project.rb
app/models/project.rb
+7
-9
No files found.
app/models/project.rb
View file @
25f68a71
...
@@ -177,15 +177,13 @@ class Project < ActiveRecord::Base
...
@@ -177,15 +177,13 @@ class Project < ActiveRecord::Base
end
end
def
find_with_namespace
(
id
)
def
find_with_namespace
(
id
)
if
id
.
include?
(
"/"
)
return
nil
unless
id
.
include?
(
"/"
)
id
=
id
.
split
(
"/"
)
namespace
=
Namespace
.
find_by
(
path:
id
.
first
)
id
=
id
.
split
(
"/"
)
return
nil
unless
namespace
namespace
=
Namespace
.
find_by
(
path:
id
.
first
)
return
nil
unless
namespace
where
(
namespace_id:
namespace
.
id
).
find_by
(
path:
id
.
second
)
else
where
(
namespace_id:
namespace
.
id
).
find_by
(
path:
id
.
second
)
where
(
path:
id
,
namespace_id:
nil
).
last
end
end
end
def
visibility_levels
def
visibility_levels
...
...
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