feat(security): Automatic XSRF handling.
Automatically recognize XSRF protection cookies, and set a corresponding XSRF header. Allows applications to configure the cookie names, or if needed, completely override the XSRF request configuration by binding their own XSRFHandler implementation. Part of #8511.
This commit is contained in:
@ -153,4 +153,8 @@ export class WorkerDomAdapter extends DomAdapter {
|
||||
getTransitionEnd(): string { throw "not implemented"; }
|
||||
supportsAnimation(): boolean { throw "not implemented"; }
|
||||
supportsWebAnimation(): boolean { throw "not implemented"; }
|
||||
|
||||
supportsCookies(): boolean { return false; }
|
||||
getCookie(name: string): string { throw "not implemented"; }
|
||||
setCookie(name: string, value: string) { throw "not implemented"; }
|
||||
}
|
||||
|
Reference in New Issue
Block a user