Sha256: 8f7ea5216fec60e04aa6c622ec0ab229994cd4d4a7f87773ff71824eac3492b2
Contents?: true
Size: 456 Bytes
Versions: 18
Compression:
Stored size: 456 Bytes
Contents
/** * @ngdoc service * @name Bastion.hosts.factory:HostTraces * * @requires BastionResource * * @description * Provides a BastionResource for the packages of a single content host */ angular.module('Bastion.hosts').factory('HostTraces', ['BastionResource', function (BastionResource) { return BastionResource('/api/v2/hosts/:id/traces/:action', {id: '@id'}, { get: {method: 'GET', isArray: false} }); }] );
Version data entries
18 entries across 18 versions & 1 rubygems