Skip to content

Commit

Permalink
Fix missing jwt token in put request
Browse files Browse the repository at this point in the history
  • Loading branch information
jax9000 committed Jan 12, 2017
1 parent a4a83ac commit e0704ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/cardsView/services/base-card.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export abstract class BaseCardService {
}

protected _put<T>(path: string): Observable<T> {
return this.http.put(path, "")
return this.http.put(path, "", this.pluginAuth.RequestOptionsWithPluginAuthentication)
.map(res => res.json());
}

Expand Down

0 comments on commit e0704ef

Please sign in to comment.