Sha256: 7f9fde9bfbcc99a6dd7a469a8a488090f715fe6e01a4b9fde515ea3255f61825
Contents?: true
Size: 677 Bytes
Versions: 130
Compression:
Stored size: 677 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
130 entries across 130 versions & 1 rubygems