mirror of
https://github.com/discourse/discourse.git
synced 2025-03-09 14:34:35 +00: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);
|
||
|
}
|