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
fa3a2166
Commit
fa3a2166
authored
Dec 05, 2019
by
Marvin Karegyeya
Committed by
Natalia Tepluhina
Dec 05, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
delete board_service.js file
parent
fdabd907
Changes
7
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
41 additions
and
141 deletions
+41
-141
app/assets/javascripts/boards/services/board_service.js
app/assets/javascripts/boards/services/board_service.js
+0
-98
changelogs/unreleased/Delete-board_service-js-in-app-folder.yml
...logs/unreleased/Delete-board_service-js-in-app-folder.yml
+5
-0
ee/spec/javascripts/boards/components/assignee_select_spec.js
...pec/javascripts/boards/components/assignee_select_spec.js
+0
-1
spec/frontend/boards/boards_store_spec.js
spec/frontend/boards/boards_store_spec.js
+36
-39
spec/javascripts/boards/boards_store_spec.js
spec/javascripts/boards/boards_store_spec.js
+0
-1
spec/javascripts/boards/issue_spec.js
spec/javascripts/boards/issue_spec.js
+0
-1
spec/javascripts/boards/list_spec.js
spec/javascripts/boards/list_spec.js
+0
-1
No files found.
app/assets/javascripts/boards/services/board_service.js
deleted
100644 → 0
View file @
fdabd907
/* eslint-disable class-methods-use-this */
/**
* This file is intended to be deleted.
* The existing functions will removed one by one in favor of using the board store directly.
* see https://gitlab.com/gitlab-org/gitlab-foss/issues/61621
*/
import
boardsStore
from
'
~/boards/stores/boards_store
'
;
export
default
class
BoardService
{
generateBoardsPath
(
id
)
{
return
boardsStore
.
generateBoardsPath
(
id
);
}
generateIssuesPath
(
id
)
{
return
boardsStore
.
generateIssuesPath
(
id
);
}
static
generateIssuePath
(
boardId
,
id
)
{
return
boardsStore
.
generateIssuePath
(
boardId
,
id
);
}
all
()
{
return
boardsStore
.
all
();
}
generateDefaultLists
()
{
return
boardsStore
.
generateDefaultLists
();
}
createList
(
entityId
,
entityType
)
{
return
boardsStore
.
createList
(
entityId
,
entityType
);
}
updateList
(
id
,
position
,
collapsed
)
{
return
boardsStore
.
updateList
(
id
,
position
,
collapsed
);
}
destroyList
(
id
)
{
return
boardsStore
.
destroyList
(
id
);
}
getIssuesForList
(
id
,
filter
=
{})
{
return
boardsStore
.
getIssuesForList
(
id
,
filter
);
}
moveIssue
(
id
,
fromListId
=
null
,
toListId
=
null
,
moveBeforeId
=
null
,
moveAfterId
=
null
)
{
return
boardsStore
.
moveIssue
(
id
,
fromListId
,
toListId
,
moveBeforeId
,
moveAfterId
);
}
moveMultipleIssues
({
ids
,
fromListId
=
null
,
toListId
=
null
,
moveBeforeId
=
null
,
moveAfterId
=
null
,
})
{
return
boardsStore
.
moveMultipleIssues
({
ids
,
fromListId
,
toListId
,
moveBeforeId
,
moveAfterId
});
}
newIssue
(
id
,
issue
)
{
return
boardsStore
.
newIssue
(
id
,
issue
);
}
getBacklog
(
data
)
{
return
boardsStore
.
getBacklog
(
data
);
}
bulkUpdate
(
issueIds
,
extraData
=
{})
{
return
boardsStore
.
bulkUpdate
(
issueIds
,
extraData
);
}
static
getIssueInfo
(
endpoint
)
{
return
boardsStore
.
getIssueInfo
(
endpoint
);
}
static
toggleIssueSubscription
(
endpoint
)
{
return
boardsStore
.
toggleIssueSubscription
(
endpoint
);
}
allBoards
()
{
return
boardsStore
.
allBoards
();
}
recentBoards
()
{
return
boardsStore
.
recentBoards
();
}
createBoard
(
board
)
{
return
boardsStore
.
createBoard
(
board
);
}
deleteBoard
({
id
})
{
return
boardsStore
.
deleteBoard
({
id
});
}
}
window
.
BoardService
=
BoardService
;
changelogs/unreleased/Delete-board_service-js-in-app-folder.yml
0 → 100644
View file @
fa3a2166
---
title
:
delete board_service.js
merge_request
:
20168
author
:
nuwe1
type
:
other
ee/spec/javascripts/boards/components/assignee_select_spec.js
View file @
fa3a2166
import
MockAdapter
from
'
axios-mock-adapter
'
;
import
Vue
from
'
vue
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
'
~/boards/services/board_service
'
;
import
boardsStore
from
'
~/boards/stores/boards_store
'
;
import
IssuableContext
from
'
~/issuable_context
'
;
import
AssigneeSelect
from
'
ee/boards/components/assignee_select.vue
'
;
...
...
spec/frontend/boards/
services/board_servic
e_spec.js
→
spec/frontend/boards/
boards_stor
e_spec.js
View file @
fa3a2166
This diff is collapsed.
Click to expand it.
spec/javascripts/boards/boards_store_spec.js
View file @
fa3a2166
...
...
@@ -8,7 +8,6 @@ import '~/boards/models/label';
import
'
~/boards/models/assignee
'
;
import
'
~/boards/models/issue
'
;
import
'
~/boards/models/list
'
;
import
'
~/boards/services/board_service
'
;
import
boardsStore
from
'
~/boards/stores/boards_store
'
;
import
eventHub
from
'
~/boards/eventhub
'
;
import
{
listObj
,
listObjDuplicate
,
boardsMockInterceptor
}
from
'
./mock_data
'
;
...
...
spec/javascripts/boards/issue_spec.js
View file @
fa3a2166
...
...
@@ -5,7 +5,6 @@ import '~/boards/models/label';
import
'
~/boards/models/assignee
'
;
import
'
~/boards/models/issue
'
;
import
'
~/boards/models/list
'
;
import
'
~/boards/services/board_service
'
;
import
boardsStore
from
'
~/boards/stores/boards_store
'
;
import
{
setMockEndpoints
}
from
'
./mock_data
'
;
...
...
spec/javascripts/boards/list_spec.js
View file @
fa3a2166
...
...
@@ -10,7 +10,6 @@ import '~/boards/models/label';
import
'
~/boards/models/assignee
'
;
import
'
~/boards/models/issue
'
;
import
'
~/boards/models/list
'
;
import
'
~/boards/services/board_service
'
;
import
boardsStore
from
'
~/boards/stores/boards_store
'
;
import
{
listObj
,
listObjDuplicate
,
boardsMockInterceptor
}
from
'
./mock_data
'
;
...
...
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