harbor/static/resources/js/harbor.module.js

51 lines
1.4 KiB
JavaScript
Raw Normal View History

(function() {
'use strict';
angular
.module('harbor.app', [
2016-04-18 10:33:30 +02:00
'ngRoute',
'ngMessages',
2016-05-13 12:48:06 +02:00
'ngCookies',
'harbor.session',
2016-06-25 21:12:17 +02:00
'harbor.layout.element.height',
'harbor.layout.header',
'harbor.layout.footer',
'harbor.layout.navigation',
2016-05-06 14:37:44 +02:00
'harbor.layout.sign.up',
'harbor.layout.add.new',
'harbor.layout.account.setting',
'harbor.layout.forgot.password',
'harbor.layout.reset.password',
2016-05-01 19:46:50 +02:00
'harbor.layout.index',
'harbor.layout.dashboard',
2016-05-01 19:46:50 +02:00
'harbor.layout.project',
'harbor.layout.admin.option',
'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',
'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',
2016-05-01 19:46:50 +02:00
'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'
2016-04-14 19:50:10 +02:00
]);
})();