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
d6b037c9
Commit
d6b037c9
authored
Jan 05, 2018
by
Eric Eastwood
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve conflicts in board_service
See
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/3929
parent
36b711fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
14 deletions
+0
-14
app/assets/javascripts/boards/services/board_service.js
app/assets/javascripts/boards/services/board_service.js
+0
-14
No files found.
app/assets/javascripts/boards/services/board_service.js
View file @
d6b037c9
...
...
@@ -12,7 +12,6 @@ export default class BoardService {
generateBoardsPath
(
id
)
{
return
`
${
this
.
boardsEndpoint
}${
id
?
`/
${
id
}
`
:
''
}
.json`
;
<<<<<<<
HEAD
}
generateIssuesPath
(
id
)
{
...
...
@@ -51,16 +50,6 @@ export default class BoardService {
deleteBoard
({
id
})
{
return
axios
.
delete
(
this
.
generateBoardsPath
(
id
));
=======
}
generateIssuesPath
(
id
)
{
return
`
${
this
.
listsEndpoint
}${
id
?
`/
${
id
}
`
:
''
}
/issues`
;
}
static
generateIssuePath
(
boardId
,
id
)
{
return
`
${
gon
.
relative_url_root
}
/-/boards/
${
boardId
?
`/
${
boardId
}
`
:
''
}
/issues
${
id
?
`/
${
id
}
`
:
''
}
`
;
>>>>>>>
upstream
/
master
}
all
()
{
...
...
@@ -129,15 +118,12 @@ export default class BoardService {
static
getIssueInfo
(
endpoint
)
{
return
axios
.
get
(
endpoint
);
<<<<<<<
HEAD
}
static
updateWeight
(
endpoint
,
weight
=
null
)
{
return
axios
.
put
(
endpoint
,
{
weight
,
});
=======
>>>>>>>
upstream
/
master
}
static
toggleIssueSubscription
(
endpoint
)
{
...
...
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