GUACAMOLE-1579: Stop including the auth token when making requests to the /api/patches endpoint.

This commit is contained in:
James Muehlner
2022-04-08 21:48:33 +00:00
committed by Mike Jumper
parent ff4854d8f7
commit 720696076f

View File

@@ -25,7 +25,6 @@ angular.module('rest').factory('patchService', ['$injector',
// Required services
var requestService = $injector.get('requestService');
var authenticationService = $injector.get('authenticationService');
var cacheService = $injector.get('cacheService');
var service = {};
@@ -43,7 +42,7 @@ angular.module('rest').factory('patchService', ['$injector',
service.getPatches = function getPatches() {
// Retrieve all applicable HTML patches
return authenticationService.request({
return requestService({
cache : cacheService.patches,
method : 'GET',
url : 'api/patches'