Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
a5af4590
Commit
a5af4590
authored
Nov 14, 2016
by
Valery Sizov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix gitlab:elastic:index_wiki
parent
3b5f3c61
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
app/models/project.rb
app/models/project.rb
+1
-1
spec/models/project_spec.rb
spec/models/project_spec.rb
+12
-0
No files found.
app/models/project.rb
View file @
a5af4590
...
...
@@ -239,7 +239,7 @@ class Project < ActiveRecord::Base
scope
:with_builds_enabled
,
->
{
with_feature_enabled
(
:builds
)
}
scope
:with_issues_enabled
,
->
{
with_feature_enabled
(
:issues
)
}
scope
:with_wiki_enabled
,
->
{
with_
project_feature
(
:wiki
)
}
scope
:with_wiki_enabled
,
->
{
with_
feature_enabled
(
:wiki
)
}
# project features may be "disabled", "internal" or "enabled". If "internal",
# they are only available to team members. This scope returns projects where
...
...
spec/models/project_spec.rb
View file @
a5af4590
...
...
@@ -118,6 +118,18 @@ describe Project, models: true do
it
{
is_expected
.
to
include_module
(
Sortable
)
}
end
describe
'scopes'
do
context
'#with_wiki_enabled'
do
it
'returns a project'
do
project
=
create
(
:project_empty_repo
,
wiki_access_level:
ProjectFeature
::
ENABLED
)
project1
=
create
(
:project
,
wiki_access_level:
ProjectFeature
::
DISABLED
)
expect
(
Project
.
with_wiki_enabled
).
to
include
(
project
)
expect
(
Project
.
with_wiki_enabled
).
not_to
include
(
project1
)
end
end
end
describe
'validation'
do
let!
(
:project
)
{
create
(
:project
)
}
...
...
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