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
4acd5035
Commit
4acd5035
authored
Jun 02, 2017
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve conflicts I guess it's correct
parent
b00d36c5
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
10 deletions
+3
-10
app/assets/javascripts/dispatcher.js
app/assets/javascripts/dispatcher.js
+0
-6
app/models/project.rb
app/models/project.rb
+3
-4
No files found.
app/assets/javascripts/dispatcher.js
View file @
4acd5035
...
...
@@ -130,13 +130,7 @@ import ApproversSelect from './approvers_select';
case
'
projects:merge_requests:index
'
:
case
'
projects:issues:index
'
:
if
(
gl
.
FilteredSearchManager
&&
document
.
querySelector
(
'
.filtered-search
'
))
{
<<<<<<<
HEAD
const
filteredSearchManager
=
new
gl
.
FilteredSearchManager
(
page
===
'
projects:issues:index
'
?
'
issues
'
:
'
merge_requests
'
,
);
=======
const
filteredSearchManager
=
new
gl
.
FilteredSearchManager
(
page
===
'
projects:issues:index
'
?
'
issues
'
:
'
merge_requests
'
);
>>>>>>>
upstream
/
master
filteredSearchManager
.
setup
();
}
Issuable
.
init
();
...
...
app/models/project.rb
View file @
4acd5035
...
...
@@ -298,11 +298,10 @@ class Project < ActiveRecord::Base
scope
:with_builds_enabled
,
->
{
with_feature_enabled
(
:builds
)
}
scope
:with_issues_enabled
,
->
{
with_feature_enabled
(
:issues
)
}
<<<<<<<
HEAD
scope
:with_wiki_enabled
,
->
{
with_feature_enabled
(
:wiki
)
}
=======
scope
:with_merge_requests_enabled
,
->
{
with_feature_enabled
(
:merge_requests
)
}
>>>>>>>
upstream
/
master
# EE
scope
:with_wiki_enabled
,
->
{
with_feature_enabled
(
:wiki
)
}
enum
auto_cancel_pending_pipelines:
{
disabled:
0
,
enabled:
1
}
...
...
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