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
6a4be512
Commit
6a4be512
authored
Apr 28, 2021
by
Florie Guibert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix FOSS static analysis
parent
6bf3b241
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
5 deletions
+18
-5
app/assets/javascripts/boards/stores/actions.js
app/assets/javascripts/boards/stores/actions.js
+5
-5
ee/app/assets/javascripts/boards/constants.js
ee/app/assets/javascripts/boards/constants.js
+13
-0
No files found.
app/assets/javascripts/boards/stores/actions.js
View file @
6a4be512
import
*
as
Sentry
from
'
@sentry/browser
'
;
import
{
updateListQueries
}
from
'
ee_else_ce/boards/constants
'
;
import
createBoardListMutation
from
'
ee_else_ce/boards/graphql/board_list_create.mutation.graphql
'
;
import
boardListsQuery
from
'
ee_else_ce/boards/graphql/board_lists.query.graphql
'
;
import
issueMoveListMutation
from
'
ee_else_ce/boards/graphql/issue_move_list.mutation.graphql
'
;
import
{
BoardType
,
ListType
,
...
...
@@ -12,7 +8,11 @@ import {
titleQueries
,
subscriptionQueries
,
SupportedFilters
,
}
from
'
~/boards/constants
'
;
updateListQueries
,
}
from
'
ee_else_ce/boards/constants
'
;
import
createBoardListMutation
from
'
ee_else_ce/boards/graphql/board_list_create.mutation.graphql
'
;
import
boardListsQuery
from
'
ee_else_ce/boards/graphql/board_lists.query.graphql
'
;
import
issueMoveListMutation
from
'
ee_else_ce/boards/graphql/issue_move_list.mutation.graphql
'
;
import
{
getIdFromGraphQLId
}
from
'
~/graphql_shared/utils
'
;
import
createGqClient
,
{
fetchPolicies
}
from
'
~/lib/graphql
'
;
import
{
convertObjectPropsToCamelCase
,
urlParamsToObject
}
from
'
~/lib/utils/common_utils
'
;
...
...
ee/app/assets/javascripts/boards/constants.js
View file @
6a4be512
...
...
@@ -68,6 +68,19 @@ export const updateListQueries = {
},
};
// re-export some FOSS constants so that lint does not yell
// https://gitlab.com/gitlab-org/gitlab/-/issues/329164
export
{
BoardType
,
ListType
,
inactiveId
,
flashAnimationDuration
,
ISSUABLE
,
titleQueries
,
subscriptionQueries
,
SupportedFilters
,
}
from
'
~/boards/constants
'
;
export
default
{
updateListQueries
,
DRAGGABLE_TAG
,
...
...
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