templates.factory.hbs.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ui-designer-artifact-builder-generator-angularjs Show documentation
Show all versions of ui-designer-artifact-builder-generator-angularjs Show documentation
This module is a generator on AngularJS for Artifact Builder
angular.module('bonitasoft.ui.services').factory('{{name}}Factory', function() {
var resources = {};
{{#each resources}}
resources['{{ @key }}'] = {{ json this }};
{{/each}}
return {
get: function(uuid) {
return resources[uuid];
}
};
});