Make accessTokens nullable in storage
This commit is contained in:
@@ -11,6 +11,6 @@ export class IdMapping {
|
|||||||
@Column('integer')
|
@Column('integer')
|
||||||
type!: number // Type of the entity; 0 = user, 1 = room, 2 = message
|
type!: number // Type of the entity; 0 = user, 1 = room, 2 = message
|
||||||
|
|
||||||
@Column()
|
@Column({ nullable: true })
|
||||||
accessToken?: string // Access token for matrix users
|
accessToken?: string // Access token for matrix users
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user