All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.apps.availableAppsService.js Maven / Gradle / Ivy

(function(){

	var injectParams = ['$http', 'SETTINGS'];

	var AvailableAppsService = function($http, SETTINGS) {
    	this.getAll = function() {
    		return $http.get(SETTINGS.APPS_URL).then(function(response){
				return response.data;
			});
    	}
    };

    AvailableAppsService.$inject = injectParams;

	angular.module('openmuc.common').service('AvailableAppsService', AvailableAppsService);

})();




© 2015 - 2024 Weber Informatics LLC | Privacy Policy