mirror of
https://github.com/ansible/awx.git
synced 2026-04-06 18:49:21 -02:30
Update project structure
This commit is contained in:
15
awx/ui/client/lib/models/index.js
Normal file
15
awx/ui/client/lib/models/index.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import Base from './Base';
|
||||
import CredentialType from './CredentialType';
|
||||
|
||||
function config ($resourceProvider) {
|
||||
$resourceProvider.defaults.stripTrailingSlashes = false;
|
||||
}
|
||||
|
||||
config.$inject = ['$resourceProvider'];
|
||||
|
||||
angular
|
||||
.module('at.lib.models', [])
|
||||
.config(config)
|
||||
.factory('Base', Base)
|
||||
.factory('CredentialType', CredentialType);
|
||||
|
||||
Reference in New Issue
Block a user