Allow user with enough power level to redact other's messages (#969)
This commit is contained in:
parent
cd5b9ea3f9
commit
82e35cda0d
13 changed files with 112 additions and 18 deletions
|
|
@ -250,6 +250,12 @@ class RustMatrixRoom(
|
|||
}
|
||||
}
|
||||
|
||||
override suspend fun canUserRedact(userId: UserId): Result<Boolean> {
|
||||
return runCatching {
|
||||
innerRoom.canUserRedact(userId.value)
|
||||
}
|
||||
}
|
||||
|
||||
override suspend fun canUserSendState(userId: UserId, type: StateEventType): Result<Boolean> {
|
||||
return runCatching {
|
||||
innerRoom.canUserSendState(userId.value, type.map())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue