2016-07-07 18:03:32 +02:00
|
|
|
/*
|
|
|
|
Copyright (c) 2016 VMware, Inc. All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
2016-04-13 12:55:05 +02:00
|
|
|
(function() {
|
|
|
|
'use strict';
|
|
|
|
angular
|
|
|
|
.module('harbor.app', [
|
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-07-06 07:32:16 +02:00
|
|
|
'harbor.layout.change.password',
|
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',
|
2016-06-30 09:57:00 +02:00
|
|
|
'harbor.system.management',
|
2016-07-05 07:03:18 +02:00
|
|
|
'harbor.loading.progress',
|
2016-07-06 01:57:09 +02:00
|
|
|
'harbor.inline.help',
|
|
|
|
'harbor.dismissable.alerts'
|
2016-04-14 19:50:10 +02:00
|
|
|
]);
|
2016-07-06 07:32:16 +02:00
|
|
|
})();
|