-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cleanup of interceptor. Moved methods into constants. A bug exists, w…
…here first call will fail, thogh a switchmap has been created.
- Loading branch information
1 parent
1323682
commit ba13599
Showing
2 changed files
with
24 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export const CsrfCookieName = "token-cookie-name"; | ||
export const CsrfCookieName = "x-csrf-cookie"; | ||
export const CsrfHeaderName = "x-csrf-token"; | ||
export const IgnoredCsrfMethods = ["GET", "HEAD", "OPTIONS"]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters