Sha256: ee7e5c5d4e88b545295d3140d3788c91552d4f2fde113a196aa3cfa92a230550
Contents?: true
Size: 555 Bytes
Versions: 158
Compression:
Stored size: 555 Bytes
Contents
/** * @ngdoc service * @name Katello.http-proxies.factory:HttpProxy * * @requires BastionResource * * @description * Provides a BastionResource for Http Proxies. */ angular.module("Bastion.http-proxies").factory("HttpProxy", [ "BastionResource", "CurrentOrganization", function(BastionResource, CurrentOrganization) { return BastionResource( "api/v2/http_proxies/:id/:action", { "id": "@id", "organization_id": CurrentOrganization } ); } ]);
Version data entries
158 entries across 158 versions & 1 rubygems