better check if an user can edit addresses
This commit is contained in:
@@ -145,7 +145,7 @@ class SecurityAndPrivacyScreenViewModel: SecurityAndPrivacyScreenViewModelType,
|
||||
}
|
||||
|
||||
private func setupPermissions(powerLevels: RoomPowerLevelsProxyProtocol) {
|
||||
state.canEditAddress = powerLevels.canOwnUser(sendStateEvent: .roomAliases)
|
||||
state.canEditAddress = powerLevels.canOwnUser(sendStateEvent: .roomCanonicalAlias)
|
||||
state.canEditJoinRule = powerLevels.canOwnUser(sendStateEvent: .roomJoinRules)
|
||||
state.canEditHistoryVisibility = powerLevels.canOwnUser(sendStateEvent: .roomHistoryVisibility)
|
||||
state.canEnableEncryption = powerLevels.canOwnUser(sendStateEvent: .roomEncryption)
|
||||
|
||||
@@ -49,7 +49,7 @@ extension RoomPowerLevelsProxyProtocol {
|
||||
func canOwnUserEditSecurityAndPrivacy(isSpace: Bool, joinRule: JoinRule?) -> Bool {
|
||||
let canOwnUserChangeAddress = switch joinRule {
|
||||
case .knockRestricted, .knock, .public:
|
||||
canOwnUser(sendStateEvent: .roomAliases)
|
||||
canOwnUser(sendStateEvent: .roomCanonicalAlias)
|
||||
default:
|
||||
false
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user