Sha256: 08f86e242b5a8b2d8b0684258797867c452803f6e7b7238ac8fc6b634d98e2cf
Contents?: true
Size: 678 Bytes
Versions: 38
Compression:
Stored size: 678 Bytes
Contents
(function () { 'use strict'; /** * @ngdoc factory * @name Bastion.ostree-branches.factory:OstreeBranch * * @description * Provides a BastionResource for interacting with Ostree Branches */ function OstreeBranch(BastionResource) { return BastionResource('/katello/api/v2/ostree_branches/:id', {'id': '@id'}, { autocomplete: {method: 'GET', isArray: true, params: {id: 'auto_complete_search'}} } ); } angular .module('Bastion.ostree-branches') .factory('OstreeBranch', OstreeBranch); OstreeBranch.$inject = ['BastionResource']; })();
Version data entries
38 entries across 38 versions & 1 rubygems