diff options
Diffstat (limited to 'moon_gui/static/app/services/partner/nova.service.js')
-rwxr-xr-x | moon_gui/static/app/services/partner/nova.service.js | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/moon_gui/static/app/services/partner/nova.service.js b/moon_gui/static/app/services/partner/nova.service.js deleted file mode 100755 index 38e2a0fc..00000000 --- a/moon_gui/static/app/services/partner/nova.service.js +++ /dev/null @@ -1,35 +0,0 @@ -/** - * @author arnaud marhin<arnaud.marhin@orange.com> - */ - -(function() { - - 'use strict'; - - angular - .module('moon') - .factory('novaService', novaService); - - novaService.$inject = ['$resource']; - - function novaService($resource) { - - return { - - data: { - - image: $resource('./pip/nova/images', {}, { - query: {method: 'GET', isArray: false} - }), - - flavor: $resource('./pip/nova/flavors', {}, { - query: {method: 'GET', isArray: false} - }) - - } - - }; - - } - -})(); |