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
254aaa2c
Commit
254aaa2c
authored
Oct 04, 2017
by
Simon Knox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix board edit/creation to match shape BE expects
parent
8b2046d4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
8 deletions
+4
-8
app/assets/javascripts/boards/services/board_service.js
app/assets/javascripts/boards/services/board_service.js
+4
-8
No files found.
app/assets/javascripts/boards/services/board_service.js
View file @
254aaa2c
...
...
@@ -30,20 +30,16 @@ class BoardService {
}
createBoard
(
board
)
{
board
.
board
=
board
.
board
||
{};
board
.
board
.
label_ids
=
(
board
.
labels
||
[]).
map
(
b
=>
b
.
id
);
board
.
label_ids
=
(
board
.
labels
||
[]).
map
(
b
=>
b
.
id
);
if
(
board
.
assignee
)
{
board
.
board
.
assignee_id
=
board
.
assignee
.
id
;
board
.
assignee_id
=
board
.
assignee
.
id
;
}
board
.
board
.
milestone_id
=
board
.
milestone_id
;
board
.
board
.
weight
=
board
.
weight
;
if
(
board
.
id
)
{
return
this
.
boards
.
update
({
id
:
board
.
id
},
board
);
return
this
.
boards
.
update
({
id
:
board
.
id
},
{
board
}
);
}
return
this
.
boards
.
save
({},
board
);
return
this
.
boards
.
save
({},
{
board
}
);
}
all
()
{
...
...
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