diff --git a/src/app/cardsView/services/base-card.service.ts b/src/app/cardsView/services/base-card.service.ts index 2a5959f..8133020 100644 --- a/src/app/cardsView/services/base-card.service.ts +++ b/src/app/cardsView/services/base-card.service.ts @@ -21,7 +21,7 @@ export abstract class BaseCardService { } protected _put(path: string): Observable { - return this.http.put(path, "") + return this.http.put(path, "", this.pluginAuth.RequestOptionsWithPluginAuthentication) .map(res => res.json()); }