mirror of
https://github.com/owncast/owncast.git
synced 2025-11-01 19:32:20 +08:00
Connect to websocket and start accepting messages
This commit is contained in:
9
web/interfaces/user.model.ts
Normal file
9
web/interfaces/user.model.ts
Normal file
@ -0,0 +1,9 @@
|
||||
export interface User {
|
||||
id: string;
|
||||
displayName: string;
|
||||
displayColor: number;
|
||||
createdAt: Date;
|
||||
previousNames: string[];
|
||||
nameChangedAt: Date;
|
||||
scopes: string[];
|
||||
}
|
||||
Reference in New Issue
Block a user