mirror of
https://github.com/ansible/awx.git
synced 2026-03-26 13:25:02 -02:30
Update dependencies, template file, and docs
* Use git+https prefix in git-based npm dependencies * Use ejs template for index to fix extraneous slash in path * Remove outdated documentation * Remove unused service * Regenerate shrinkwrap
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import defaults from '../../assets/default.strings.json';
|
||||
import defaults from '@assets/default.strings.json';
|
||||
|
||||
let i18n;
|
||||
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import CacheService from '@services/cache.service';
|
||||
import EventService from '@services/event.service';
|
||||
import PathService from '@services/path.service';
|
||||
import BaseStringService from '@services/base-string.service';
|
||||
import AppStrings from '@services/app.strings';
|
||||
|
||||
@@ -9,5 +8,4 @@ angular
|
||||
.service('AppStrings', AppStrings)
|
||||
.service('BaseStringService', BaseStringService)
|
||||
.service('CacheService', CacheService)
|
||||
.service('EventService', EventService)
|
||||
.service('PathService', PathService);
|
||||
.service('EventService', EventService);
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
function PathService () {
|
||||
this.getPartialPath = path => {
|
||||
return `/static/partials/${path}.partial.html`;
|
||||
};
|
||||
|
||||
this.getViewPath = path => {
|
||||
return `/static/views/${path}.view.html`;
|
||||
}
|
||||
}
|
||||
|
||||
export default PathService;
|
||||
Reference in New Issue
Block a user