mirror of
https://github.com/discourse/discourse.git
synced 2025-05-23 09:22:42 +08:00
DEV: resets csrf ajax prefilter only if present (#7747)
This commit is contained in:
@ -16,6 +16,7 @@ import { resetDecorators } from "discourse/widgets/widget";
|
||||
import { resetDecorators as resetPostCookedDecorators } from "discourse/widgets/post-cooked";
|
||||
import { resetCache as resetOneboxCache } from "pretty-text/oneboxer";
|
||||
import { resetCustomPostMessageCallbacks } from "discourse/controllers/topic";
|
||||
import { resetCsrfCallbacks } from "discourse/initializers/csrf-token";
|
||||
|
||||
export function currentUser() {
|
||||
return Discourse.User.create(
|
||||
@ -128,6 +129,7 @@ export function acceptance(name, options) {
|
||||
resetPostCookedDecorators();
|
||||
resetOneboxCache();
|
||||
resetCustomPostMessageCallbacks();
|
||||
resetCsrfCallbacks();
|
||||
Discourse.reset();
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user