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

35 lines
928 B
JavaScript
Raw Normal View History

(function() {
'use strict';
angular
.module('harbor.app', [
2016-04-18 10:33:30 +02:00
'ngRoute',
'ngMessages',
'harbor.session',
'harbor.layout.header',
'harbor.layout.navigation',
2016-05-06 14:37:44 +02:00
'harbor.layout.sign.up',
'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.project',
'harbor.layout.repository',
'harbor.layout.project.member',
'harbor.layout.user',
'harbor.layout.log',
2016-05-01 19:46:50 +02:00
'harbor.services.project',
'harbor.services.user',
'harbor.services.repository',
'harbor.services.project.member',
'harbor.optional.menu',
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'
2016-04-14 19:50:10 +02:00
]);
})();