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
d1394090
Commit
d1394090
authored
Jan 20, 2022
by
Ezekiel Kigbo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor fix additional import paths
parent
20afc0d1
Changes
13
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
13 additions
and
13 deletions
+13
-13
app/assets/javascripts/packages_and_registries/container_registry/explorer/pages/list.vue
...and_registries/container_registry/explorer/pages/list.vue
+1
-1
app/assets/javascripts/packages_and_registries/infrastructure_registry/details/components/app.vue
...stries/infrastructure_registry/details/components/app.vue
+1
-1
app/assets/javascripts/packages_and_registries/infrastructure_registry/details/components/package_history.vue
...structure_registry/details/components/package_history.vue
+1
-1
app/assets/javascripts/packages_and_registries/infrastructure_registry/details/store/actions.js
...gistries/infrastructure_registry/details/store/actions.js
+1
-1
app/assets/javascripts/packages_and_registries/infrastructure_registry/list/components/packages_list.vue
...infrastructure_registry/list/components/packages_list.vue
+1
-1
app/assets/javascripts/packages_and_registries/infrastructure_registry/list/components/packages_list_app.vue
...astructure_registry/list/components/packages_list_app.vue
+1
-1
app/assets/javascripts/packages_and_registries/infrastructure_registry/list/stores/actions.js
...registries/infrastructure_registry/list/stores/actions.js
+1
-1
app/assets/javascripts/packages_and_registries/infrastructure_registry/shared/package_list_row.vue
...tries/infrastructure_registry/shared/package_list_row.vue
+1
-1
app/assets/javascripts/packages_and_registries/package_registry/components/details/package_history.vue
...s/package_registry/components/details/package_history.vue
+1
-1
app/assets/javascripts/packages_and_registries/package_registry/components/list/package_search.vue
...tries/package_registry/components/list/package_search.vue
+1
-1
app/assets/javascripts/packages_and_registries/package_registry/constants.js
...pts/packages_and_registries/package_registry/constants.js
+1
-1
app/assets/javascripts/packages_and_registries/package_registry/pages/list.vue
...s/packages_and_registries/package_registry/pages/list.vue
+1
-1
app/assets/javascripts/packages_and_registries/shared/components/cli_commands.vue
...ackages_and_registries/shared/components/cli_commands.vue
+1
-1
No files found.
app/assets/javascripts/packages_and_registries/container_registry/explorer/pages/list.vue
View file @
d1394090
...
...
@@ -12,7 +12,7 @@ import { get } from 'lodash';
import
getContainerRepositoriesQuery
from
'
shared_queries/container_registry/get_container_repositories.query.graphql
'
;
import
createFlash
from
'
~/flash
'
;
import
CleanupPolicyEnabledAlert
from
'
~/packages_and_registries/shared/components/cleanup_policy_enabled_alert.vue
'
;
import
{
FILTERED_SEARCH_TERM
}
from
'
~/packages_and_registries/shared/constants
/index
'
;
import
{
FILTERED_SEARCH_TERM
}
from
'
~/packages_and_registries/shared/constants
'
;
import
{
extractFilterAndSorting
}
from
'
~/packages_and_registries/shared/utils
'
;
import
Tracking
from
'
~/tracking
'
;
import
RegistrySearch
from
'
~/vue_shared/components/registry/registry_search.vue
'
;
...
...
app/assets/javascripts/packages_and_registries/infrastructure_registry/details/components/app.vue
View file @
d1394090
...
...
@@ -21,7 +21,7 @@ import PackagesListLoader from '~/packages_and_registries/shared/components/pack
import
{
TRACKING_ACTIONS
,
SHOW_DELETE_SUCCESS_ALERT
,
}
from
'
~/packages_and_registries/shared/constants
/index
'
;
}
from
'
~/packages_and_registries/shared/constants
'
;
import
{
TRACK_CATEGORY
}
from
'
~/packages_and_registries/infrastructure_registry/shared/constants
'
;
import
PackageFiles
from
'
./package_files.vue
'
;
import
PackageHistory
from
'
./package_history.vue
'
;
...
...
app/assets/javascripts/packages_and_registries/infrastructure_registry/details/components/package_history.vue
View file @
d1394090
...
...
@@ -3,7 +3,7 @@ import { GlLink, GlSprintf } from '@gitlab/ui';
import
{
first
}
from
'
lodash
'
;
import
{
truncateSha
}
from
'
~/lib/utils/text_utility
'
;
import
{
s__
,
n__
}
from
'
~/locale
'
;
import
{
HISTORY_PIPELINES_LIMIT
}
from
'
~/packages_and_registries/shared/constants
/index
'
;
import
{
HISTORY_PIPELINES_LIMIT
}
from
'
~/packages_and_registries/shared/constants
'
;
import
HistoryItem
from
'
~/vue_shared/components/registry/history_item.vue
'
;
import
TimeAgoTooltip
from
'
~/vue_shared/components/time_ago_tooltip.vue
'
;
...
...
app/assets/javascripts/packages_and_registries/infrastructure_registry/details/store/actions.js
View file @
d1394090
...
...
@@ -4,7 +4,7 @@ import {
DELETE_PACKAGE_ERROR_MESSAGE
,
DELETE_PACKAGE_FILE_ERROR_MESSAGE
,
DELETE_PACKAGE_FILE_SUCCESS_MESSAGE
,
}
from
'
~/packages_and_registries/shared/constants
/index
'
;
}
from
'
~/packages_and_registries/shared/constants
'
;
import
{
FETCH_PACKAGE_VERSIONS_ERROR
}
from
'
../constants
'
;
import
*
as
types
from
'
./mutation_types
'
;
...
...
app/assets/javascripts/packages_and_registries/infrastructure_registry/list/components/packages_list.vue
View file @
d1394090
...
...
@@ -5,7 +5,7 @@ import { s__ } from '~/locale';
import
Tracking
from
'
~/tracking
'
;
import
PackagesListRow
from
'
~/packages_and_registries/infrastructure_registry/shared/package_list_row.vue
'
;
import
PackagesListLoader
from
'
~/packages_and_registries/shared/components/packages_list_loader.vue
'
;
import
{
TRACKING_ACTIONS
}
from
'
~/packages_and_registries/shared/constants
/index
'
;
import
{
TRACKING_ACTIONS
}
from
'
~/packages_and_registries/shared/constants
'
;
import
{
TRACK_CATEGORY
}
from
'
~/packages_and_registries/infrastructure_registry/shared/constants
'
;
export
default
{
...
...
app/assets/javascripts/packages_and_registries/infrastructure_registry/list/components/packages_list_app.vue
View file @
d1394090
...
...
@@ -7,7 +7,7 @@ import { s__ } from '~/locale';
import
{
SHOW_DELETE_SUCCESS_ALERT
,
FILTERED_SEARCH_TERM
,
}
from
'
~/packages_and_registries/shared/constants
/index
'
;
}
from
'
~/packages_and_registries/shared/constants
'
;
import
{
getQueryParams
,
extractFilterAndSorting
}
from
'
~/packages_and_registries/shared/utils
'
;
import
InfrastructureTitle
from
'
~/packages_and_registries/infrastructure_registry/list/components/infrastructure_title.vue
'
;
...
...
app/assets/javascripts/packages_and_registries/infrastructure_registry/list/stores/actions.js
View file @
d1394090
import
Api
from
'
~/api
'
;
import
createFlash
from
'
~/flash
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
{
DELETE_PACKAGE_ERROR_MESSAGE
}
from
'
~/packages_and_registries/shared/constants
/index
'
;
import
{
DELETE_PACKAGE_ERROR_MESSAGE
}
from
'
~/packages_and_registries/shared/constants
'
;
import
{
FETCH_PACKAGES_LIST_ERROR_MESSAGE
,
DELETE_PACKAGE_SUCCESS_MESSAGE
,
...
...
app/assets/javascripts/packages_and_registries/infrastructure_registry/shared/package_list_row.vue
View file @
d1394090
...
...
@@ -6,7 +6,7 @@ import timeagoMixin from '~/vue_shared/mixins/timeago';
import
{
PACKAGE_ERROR_STATUS
,
PACKAGE_DEFAULT_STATUS
,
}
from
'
~/packages_and_registries/shared/constants
/index
'
;
}
from
'
~/packages_and_registries/shared/constants
'
;
import
PackagePath
from
'
~/packages_and_registries/shared/components/package_path.vue
'
;
import
PackageTags
from
'
~/packages_and_registries/shared/components/package_tags.vue
'
;
import
PublishMethod
from
'
~/packages_and_registries/shared/components/publish_method.vue
'
;
...
...
app/assets/javascripts/packages_and_registries/package_registry/components/details/package_history.vue
View file @
d1394090
...
...
@@ -4,7 +4,7 @@ import { first } from 'lodash';
import
{
getIdFromGraphQLId
}
from
'
~/graphql_shared/utils
'
;
import
{
truncateSha
}
from
'
~/lib/utils/text_utility
'
;
import
{
s__
,
n__
}
from
'
~/locale
'
;
import
{
HISTORY_PIPELINES_LIMIT
}
from
'
~/packages_and_registries/shared/constants
/index
'
;
import
{
HISTORY_PIPELINES_LIMIT
}
from
'
~/packages_and_registries/shared/constants
'
;
import
HistoryItem
from
'
~/vue_shared/components/registry/history_item.vue
'
;
import
TimeAgoTooltip
from
'
~/vue_shared/components/time_ago_tooltip.vue
'
;
...
...
app/assets/javascripts/packages_and_registries/package_registry/components/list/package_search.vue
View file @
d1394090
...
...
@@ -8,7 +8,7 @@ import { getQueryParams, extractFilterAndSorting } from '~/packages_and_registri
import
{
FILTERED_SEARCH_TERM
,
FILTERED_SEARCH_TYPE
,
}
from
'
~/packages_and_registries/shared/constants
/index
'
;
}
from
'
~/packages_and_registries/shared/constants
'
;
import
PackageTypeToken
from
'
./tokens/package_type_token.vue
'
;
export
default
{
...
...
app/assets/javascripts/packages_and_registries/package_registry/constants.js
View file @
d1394090
...
...
@@ -9,7 +9,7 @@ export {
DELETE_PACKAGE_FILE_TRACKING_ACTION
,
REQUEST_DELETE_PACKAGE_FILE_TRACKING_ACTION
,
CANCEL_DELETE_PACKAGE_FILE_TRACKING_ACTION
,
}
from
'
~/packages_and_registries/shared/constants
/index
'
;
}
from
'
~/packages_and_registries/shared/constants
'
;
export
const
PACKAGE_TYPE_CONAN
=
'
CONAN
'
;
export
const
PACKAGE_TYPE_MAVEN
=
'
MAVEN
'
;
...
...
app/assets/javascripts/packages_and_registries/package_registry/pages/list.vue
View file @
d1394090
...
...
@@ -3,7 +3,7 @@ import { GlEmptyState, GlLink, GlSprintf } from '@gitlab/ui';
import
createFlash
from
'
~/flash
'
;
import
{
historyReplaceState
}
from
'
~/lib/utils/common_utils
'
;
import
{
s__
}
from
'
~/locale
'
;
import
{
SHOW_DELETE_SUCCESS_ALERT
}
from
'
~/packages_and_registries/shared/constants
/index
'
;
import
{
SHOW_DELETE_SUCCESS_ALERT
}
from
'
~/packages_and_registries/shared/constants
'
;
import
{
PROJECT_RESOURCE_TYPE
,
GROUP_RESOURCE_TYPE
,
...
...
app/assets/javascripts/packages_and_registries/shared/components/cli_commands.vue
View file @
d1394090
...
...
@@ -10,7 +10,7 @@ import {
COPY_BUILD_TITLE
,
PUSH_COMMAND_LABEL
,
COPY_PUSH_TITLE
,
}
from
'
../constants
/index
'
;
}
from
'
../constants
'
;
const
trackingLabel
=
'
quickstart_dropdown
'
;
...
...
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