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
b4ca6df7
Commit
b4ca6df7
authored
Sep 05, 2017
by
Eric Eastwood
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve conflicts from moving move issues button
parent
d7e8c80d
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
25 deletions
+0
-25
app/controllers/projects/issues_controller.rb
app/controllers/projects/issues_controller.rb
+0
-4
app/helpers/issuables_helper.rb
app/helpers/issuables_helper.rb
+0
-5
app/views/shared/issuable/_form.html.haml
app/views/shared/issuable/_form.html.haml
+0
-3
spec/controllers/autocomplete_controller_spec.rb
spec/controllers/autocomplete_controller_spec.rb
+0
-3
spec/javascripts/issue_show/components/app_spec.js
spec/javascripts/issue_show/components/app_spec.js
+0
-5
spec/javascripts/issue_show/components/form_spec.js
spec/javascripts/issue_show/components/form_spec.js
+0
-5
No files found.
app/controllers/projects/issues_controller.rb
View file @
b4ca6df7
...
...
@@ -284,11 +284,7 @@ class Projects::IssuesController < Projects::ApplicationController
def
render_issue_json
if
@issue
.
valid?
<<<<<<<
HEAD
render
json:
IssueSerializer
.
new
.
represent
(
@issue
)
=======
render
json:
serializer
.
represent
(
@issue
)
>>>>>>>
ce
-
com
/
master
else
render
json:
{
errors:
@issue
.
errors
.
full_messages
},
status: :unprocessable_entity
end
...
...
app/helpers/issuables_helper.rb
View file @
b4ca6df7
...
...
@@ -217,13 +217,8 @@ module IssuablesHelper
canDestroy:
can?
(
current_user
,
:destroy_issue
,
issuable
),
issuableRef:
issuable
.
to_reference
,
isConfidential:
issuable
.
confidential
,
<<<<<<<
HEAD
markdownPreviewUrl:
preview_markdown_path
(
@project
),
markdownDocs:
help_page_path
(
'user/markdown'
),
=======
markdownPreviewPath:
preview_markdown_path
(
@project
),
markdownDocsPath:
help_page_path
(
'user/markdown'
),
>>>>>>>
ce
-
com
/
master
issuableTemplates:
issuable_templates
(
issuable
),
projectPath:
ref_project
.
path
,
projectNamespace:
ref_project
.
namespace
.
full_path
,
...
...
app/views/shared/issuable/_form.html.haml
View file @
b4ca6df7
...
...
@@ -29,11 +29,8 @@
=
render
'shared/issuable/form/metadata'
,
issuable:
issuable
,
form:
form
<
<<<<<<
HEAD
=
render
'shared/issuable/approvals'
,
issuable:
issuable
,
form:
form
==
=====
>
>>>>>> ce-com/master
=
render
'shared/issuable/form/branch_chooser'
,
issuable:
issuable
,
form:
form
=
render
'shared/issuable/form/merge_params'
,
issuable:
issuable
...
...
spec/controllers/autocomplete_controller_spec.rb
View file @
b4ca6df7
...
...
@@ -331,7 +331,6 @@ describe AutocompleteController do
it
'returns no projects'
do
expect
(
json_response
).
to
be_kind_of
(
Array
)
expect
(
json_response
.
size
).
to
eq
(
0
)
<<<<<<<
HEAD
end
end
end
...
...
@@ -370,8 +369,6 @@ describe AutocompleteController do
expect
(
json_response
[
1
]).
to
match
(
'name'
=>
'thumbsup'
)
expect
(
json_response
[
2
]).
to
match
(
'name'
=>
'tea'
)
expect
(
json_response
[
3
]).
to
match
(
'name'
=>
'thumbsdown'
)
=======
>>>>>>>
ce
-
com
/
master
end
end
end
...
...
spec/javascripts/issue_show/components/app_spec.js
View file @
b4ca6df7
...
...
@@ -40,13 +40,8 @@ describe('Issuable output', () => {
initialTitleText
:
''
,
initialDescriptionHtml
:
''
,
initialDescriptionText
:
''
,
<<<<<<<
HEAD
markdownPreviewUrl
:
'
/
'
,
markdownDocs
:
'
/
'
,
=======
markdownPreviewPath
:
'
/
'
,
markdownDocsPath
:
'
/
'
,
>>>>>>>
ce
-
com
/
master
isConfidential
:
false
,
projectNamespace
:
'
/
'
,
projectPath
:
'
/
'
,
...
...
spec/javascripts/issue_show/components/form_spec.js
View file @
b4ca6df7
...
...
@@ -17,13 +17,8 @@ describe('Inline edit form component', () => {
description
:
'
a
'
,
lockedWarningVisible
:
false
,
},
<<<<<<<
HEAD
markdownPreviewUrl
:
'
/
'
,
markdownDocs
:
'
/
'
,
=======
markdownPreviewPath
:
'
/
'
,
markdownDocsPath
:
'
/
'
,
>>>>>>>
ce
-
com
/
master
projectPath
:
'
/
'
,
projectNamespace
:
'
/
'
,
},
...
...
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