mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-08 19:50:05 +01:00
51 lines
1.4 KiB
JavaScript
51 lines
1.4 KiB
JavaScript
(function() {
|
|
'use strict';
|
|
angular
|
|
.module('harbor.app', [
|
|
'ngRoute',
|
|
'ngMessages',
|
|
'ngCookies',
|
|
'harbor.session',
|
|
'harbor.layout.element.height',
|
|
'harbor.layout.header',
|
|
'harbor.layout.footer',
|
|
'harbor.layout.navigation',
|
|
'harbor.layout.sign.up',
|
|
'harbor.layout.add.new',
|
|
'harbor.layout.account.setting',
|
|
'harbor.layout.forgot.password',
|
|
'harbor.layout.reset.password',
|
|
'harbor.layout.index',
|
|
'harbor.layout.dashboard',
|
|
'harbor.layout.project',
|
|
'harbor.layout.admin.option',
|
|
'harbor.layout.search',
|
|
'harbor.services.i18n',
|
|
'harbor.services.project',
|
|
'harbor.services.user',
|
|
'harbor.services.repository',
|
|
'harbor.services.project.member',
|
|
'harbor.services.replication.policy',
|
|
'harbor.services.replication.job',
|
|
'harbor.services.destination',
|
|
'harbor.summary',
|
|
'harbor.user.log',
|
|
'harbor.top.repository',
|
|
'harbor.optional.menu',
|
|
'harbor.modal.dialog',
|
|
'harbor.sign.in',
|
|
'harbor.search',
|
|
'harbor.project',
|
|
'harbor.details',
|
|
'harbor.repository',
|
|
'harbor.project.member',
|
|
'harbor.user',
|
|
'harbor.log',
|
|
'harbor.validator',
|
|
'harbor.replication',
|
|
'harbor.system.management',
|
|
'harbor.loading.progress',
|
|
'harbor.inline.help',
|
|
'harbor.dismissable.alerts'
|
|
]);
|
|
})(); |