mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-28 21:25:55 +01:00
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
(function() {
|
|
'use strict';
|
|
angular
|
|
.module('harbor.app', [
|
|
'ngRoute',
|
|
'ngMessages',
|
|
'ngCookies',
|
|
'harbor.session',
|
|
'harbor.layout.header',
|
|
'harbor.layout.navigation',
|
|
'harbor.layout.sign.up',
|
|
'harbor.layout.account.setting',
|
|
'harbor.layout.forgot.password',
|
|
'harbor.layout.reset.password',
|
|
'harbor.layout.index',
|
|
'harbor.layout.dashboard',
|
|
'harbor.layout.project',
|
|
'harbor.layout.repository',
|
|
'harbor.layout.project.member',
|
|
'harbor.layout.user',
|
|
'harbor.layout.system.management',
|
|
'harbor.layout.log',
|
|
'harbor.layout.admin.option',
|
|
'harbor.services.i18n',
|
|
'harbor.services.project',
|
|
'harbor.services.user',
|
|
'harbor.services.repository',
|
|
'harbor.services.project.member',
|
|
'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'
|
|
]);
|
|
})(); |