mirror of
https://github.com/discourse/discourse.git
synced 2024-12-18 23:43:54 +08:00
6 lines
184 B
Plaintext
6 lines
184 B
Plaintext
|
export function replaceCurrentUser(properties) {
|
||
|
const currentUser = Discourse.User.current();
|
||
|
currentUser.setProperties(properties);
|
||
|
Discourse.User.resetCurrent(currentUser);
|
||
|
}
|