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
616fb960
Commit
616fb960
authored
Dec 23, 2020
by
Nicolò Maria Mezzopera
Committed by
Paul Slaughter
Dec 23, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add UserTiming plugin to container registry
https://gitlab.com/gitlab-org/gitlab/-/merge_requests/50422
parent
219df0a7
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
18 additions
and
2 deletions
+18
-2
app/assets/javascripts/registry/explorer/components/details_page/details_header.vue
...istry/explorer/components/details_page/details_header.vue
+1
-0
app/assets/javascripts/registry/explorer/components/details_page/tags_list.vue
...s/registry/explorer/components/details_page/tags_list.vue
+1
-0
app/assets/javascripts/registry/explorer/components/list_page/image_list_row.vue
...registry/explorer/components/list_page/image_list_row.vue
+1
-1
app/assets/javascripts/registry/explorer/components/list_page/registry_header.vue
...egistry/explorer/components/list_page/registry_header.vue
+1
-0
app/assets/javascripts/registry/explorer/index.js
app/assets/javascripts/registry/explorer/index.js
+12
-0
app/assets/javascripts/registry/explorer/pages/details.vue
app/assets/javascripts/registry/explorer/pages/details.vue
+1
-0
app/assets/javascripts/registry/explorer/pages/list.vue
app/assets/javascripts/registry/explorer/pages/list.vue
+1
-1
No files found.
app/assets/javascripts/registry/explorer/components/details_page/details_header.vue
View file @
616fb960
...
...
@@ -7,6 +7,7 @@ import timeagoMixin from '~/vue_shared/mixins/timeago';
import
{
DETAILS_PAGE_TITLE
,
UPDATED_AT
}
from
'
../../constants/index
'
;
export
default
{
name
:
'
DetailsHeader
'
,
components
:
{
GlSprintf
,
TitleArea
,
MetadataItem
},
mixins
:
[
timeagoMixin
],
props
:
{
...
...
app/assets/javascripts/registry/explorer/components/details_page/tags_list.vue
View file @
616fb960
...
...
@@ -4,6 +4,7 @@ import TagsListRow from './tags_list_row.vue';
import
{
REMOVE_TAGS_BUTTON_TITLE
,
TAGS_LIST_TITLE
}
from
'
../../constants/index
'
;
export
default
{
name
:
'
TagsList
'
,
components
:
{
GlButton
,
TagsListRow
,
...
...
app/assets/javascripts/registry/explorer/components/list_page/image_list_row.vue
View file @
616fb960
...
...
@@ -18,7 +18,7 @@ import {
}
from
'
../../constants/index
'
;
export
default
{
name
:
'
ImageList
r
ow
'
,
name
:
'
ImageList
R
ow
'
,
components
:
{
ClipboardButton
,
DeleteButton
,
...
...
app/assets/javascripts/registry/explorer/components/list_page/registry_header.vue
View file @
616fb960
...
...
@@ -13,6 +13,7 @@ import {
}
from
'
../../constants/index
'
;
export
default
{
name
:
'
ListHeader
'
,
components
:
{
TitleArea
,
MetadataItem
,
...
...
app/assets/javascripts/registry/explorer/index.js
View file @
616fb960
...
...
@@ -2,6 +2,7 @@ import Vue from 'vue';
import
{
GlToast
}
from
'
@gitlab/ui
'
;
import
Translate
from
'
~/vue_shared/translate
'
;
import
{
parseBoolean
}
from
'
~/lib/utils/common_utils
'
;
import
PerformancePlugin
from
'
~/performance/vue_performance_plugin
'
;
import
RegistryExplorer
from
'
./pages/index.vue
'
;
import
RegistryBreadcrumb
from
'
./components/registry_breadcrumb.vue
'
;
import
createRouter
from
'
./router
'
;
...
...
@@ -10,6 +11,17 @@ import { apolloProvider } from './graphql/index';
Vue
.
use
(
Translate
);
Vue
.
use
(
GlToast
);
Vue
.
use
(
PerformancePlugin
,
{
components
:
[
'
RegistryListPage
'
,
'
ListHeader
'
,
'
ImageListRow
'
,
'
RegistryDetailsPage
'
,
'
DetailsHeader
'
,
'
TagsList
'
,
],
});
export
default
()
=>
{
const
el
=
document
.
getElementById
(
'
js-container-registry
'
);
...
...
app/assets/javascripts/registry/explorer/pages/details.vue
View file @
616fb960
...
...
@@ -25,6 +25,7 @@ import {
}
from
'
../constants/index
'
;
export
default
{
name
:
'
RegistryDetailsPage
'
,
components
:
{
DeleteAlert
,
PartialCleanupAlert
,
...
...
app/assets/javascripts/registry/explorer/pages/list.vue
View file @
616fb960
...
...
@@ -38,7 +38,7 @@ import {
}
from
'
../constants/index
'
;
export
default
{
name
:
'
RegistryList
App
'
,
name
:
'
RegistryList
Page
'
,
components
:
{
GlEmptyState
,
ProjectEmptyState
,
...
...
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