2016-04-13 12:55:05 +02:00
|
|
|
(function() {
|
|
|
|
'use strict';
|
|
|
|
angular
|
|
|
|
.module('harbor.app', [
|
2016-04-18 10:33:30 +02:00
|
|
|
'ngRoute',
|
2016-05-09 12:53:40 +02:00
|
|
|
'ngMessages',
|
2016-05-13 12:48:06 +02:00
|
|
|
'ngCookies',
|
2016-05-10 12:43:52 +02:00
|
|
|
'harbor.session',
|
2016-06-25 21:12:17 +02:00
|
|
|
'harbor.layout.element.height',
|
2016-05-09 19:48:05 +02:00
|
|
|
'harbor.layout.header',
|
2016-06-22 13:03:12 +02:00
|
|
|
'harbor.layout.footer',
|
2016-04-19 11:58:07 +02:00
|
|
|
'harbor.layout.navigation',
|
2016-05-06 14:37:44 +02:00
|
|
|
'harbor.layout.sign.up',
|
2016-06-22 09:15:25 +02:00
|
|
|
'harbor.layout.add.new',
|
2016-05-09 12:53:40 +02:00
|
|
|
'harbor.layout.account.setting',
|
2016-05-10 12:43:52 +02:00
|
|
|
'harbor.layout.forgot.password',
|
|
|
|
'harbor.layout.reset.password',
|
2016-05-01 19:46:50 +02:00
|
|
|
'harbor.layout.index',
|
2016-05-12 12:30:01 +02:00
|
|
|
'harbor.layout.dashboard',
|
2016-05-01 19:46:50 +02:00
|
|
|
'harbor.layout.project',
|
2016-05-12 12:30:01 +02:00
|
|
|
'harbor.layout.admin.option',
|
2016-05-19 06:50:32 +02:00
|
|
|
'harbor.layout.search',
|
2016-05-13 12:48:06 +02:00
|
|
|
'harbor.services.i18n',
|
2016-05-01 19:46:50 +02:00
|
|
|
'harbor.services.project',
|
2016-04-13 12:55:05 +02:00
|
|
|
'harbor.services.user',
|
2016-04-17 17:53:26 +02:00
|
|
|
'harbor.services.repository',
|
2016-04-21 12:19:51 +02:00
|
|
|
'harbor.services.project.member',
|
2016-05-26 12:51:23 +02:00
|
|
|
'harbor.services.replication.policy',
|
2016-05-27 12:47:06 +02:00
|
|
|
'harbor.services.replication.job',
|
2016-06-01 11:20:06 +02:00
|
|
|
'harbor.services.destination',
|
2016-06-02 09:44:53 +02:00
|
|
|
'harbor.summary',
|
2016-06-14 07:56:25 +02:00
|
|
|
'harbor.user.log',
|
|
|
|
'harbor.top.repository',
|
2016-05-09 19:48:05 +02:00
|
|
|
'harbor.optional.menu',
|
2016-05-11 09:57:52 +02:00
|
|
|
'harbor.modal.dialog',
|
2016-05-01 19:46:50 +02:00
|
|
|
'harbor.sign.in',
|
|
|
|
'harbor.search',
|
|
|
|
'harbor.project',
|
2016-04-17 17:53:26 +02:00
|
|
|
'harbor.details',
|
|
|
|
'harbor.repository',
|
2016-04-21 12:19:51 +02:00
|
|
|
'harbor.project.member',
|
2016-04-17 17:53:26 +02:00
|
|
|
'harbor.user',
|
2016-05-09 12:53:40 +02:00
|
|
|
'harbor.log',
|
2016-05-25 12:24:01 +02:00
|
|
|
'harbor.validator',
|
2016-05-31 12:49:16 +02:00
|
|
|
'harbor.replication',
|
|
|
|
'harbor.system.management'
|
2016-04-14 19:50:10 +02:00
|
|
|
]);
|
2016-04-13 12:55:05 +02:00
|
|
|
})();
|