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
2de8fab4
Commit
2de8fab4
authored
Dec 09, 2019
by
nuwe1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove store logic from boards models
parent
93f92848
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
21 deletions
+24
-21
app/assets/javascripts/boards/models/list.js
app/assets/javascripts/boards/models/list.js
+1
-21
app/assets/javascripts/boards/stores/boards_store.js
app/assets/javascripts/boards/stores/boards_store.js
+23
-0
No files found.
app/assets/javascripts/boards/models/list.js
View file @
2de8fab4
...
...
@@ -83,27 +83,7 @@ class List {
}
save
()
{
const
entity
=
this
.
label
||
this
.
assignee
||
this
.
milestone
;
let
entityType
=
''
;
if
(
this
.
label
)
{
entityType
=
'
label_id
'
;
}
else
if
(
this
.
assignee
)
{
entityType
=
'
assignee_id
'
;
}
else
if
(
IS_EE
&&
this
.
milestone
)
{
entityType
=
'
milestone_id
'
;
}
return
boardsStore
.
createList
(
entity
.
id
,
entityType
)
.
then
(
res
=>
res
.
data
)
.
then
(
data
=>
{
this
.
id
=
data
.
id
;
this
.
type
=
data
.
list_type
;
this
.
position
=
data
.
position
;
this
.
label
=
data
.
label
;
return
this
.
getIssues
();
});
return
boardsStore
.
saveList
(
this
);
}
destroy
()
{
...
...
app/assets/javascripts/boards/stores/boards_store.js
View file @
2de8fab4
...
...
@@ -525,6 +525,29 @@ const boardsStore = {
clearMultiSelect
()
{
this
.
multiSelect
.
list
=
[];
},
saveList
(
list
)
{
const
entity
=
list
.
label
||
list
.
assignee
||
list
.
milestone
;
let
entityType
=
''
;
if
(
list
.
label
)
{
entityType
=
'
label_id
'
;
}
else
if
(
list
.
assignee
)
{
entityType
=
'
assignee_id
'
;
}
else
if
(
IS_EE
&&
list
.
milestone
)
{
entityType
=
'
milestone_id
'
;
}
return
this
.
createList
(
entity
.
id
,
entityType
)
.
then
(
res
=>
res
.
data
)
.
then
(
data
=>
{
list
.
id
=
data
.
id
;
list
.
type
=
data
.
list_type
;
list
.
position
=
data
.
position
;
list
.
label
=
data
.
label
;
return
list
.
getIssues
();
});
},
};
BoardsStoreEE
.
initEESpecific
(
boardsStore
);
...
...
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