This repository has been archived on 2022-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
hydrogen-web/src/matrix/User.js
Bruno Windels 56cee450d1 return syncing user id from PendingEventEntry.sender
add User class where we later can track display name, avatar, ...
2019-07-29 10:24:34 +02:00

10 lines
144 B
JavaScript

export default class User {
constructor(userId) {
this._userId = userId;
}
get id() {
return this._userId;
}
}