mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 05:55:00 +08:00
Support Synapse deactivate on MemberInfo without Room (timeline pill)
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
c6f3ca20c0
commit
0b56e7a81c
@ -642,7 +642,10 @@ module.exports = createReactClass({
|
|||||||
|
|
||||||
_calculateOpsPermissions: async function(member) {
|
_calculateOpsPermissions: async function(member) {
|
||||||
const defaultPerms = {
|
const defaultPerms = {
|
||||||
can: {},
|
can: {
|
||||||
|
// Calculate permissions for Synapse before doing the PL checks
|
||||||
|
synapseDeactivate: await this.context.matrixClient.isSynapseAdministrator(),
|
||||||
|
},
|
||||||
muted: false,
|
muted: false,
|
||||||
};
|
};
|
||||||
const room = this.context.matrixClient.getRoom(member.roomId);
|
const room = this.context.matrixClient.getRoom(member.roomId);
|
||||||
@ -656,9 +659,10 @@ module.exports = createReactClass({
|
|||||||
|
|
||||||
const them = member;
|
const them = member;
|
||||||
return {
|
return {
|
||||||
can: await this._calculateCanPermissions(
|
can: {
|
||||||
me, them, powerLevels.getContent(),
|
...defaultPerms.can,
|
||||||
),
|
...await this._calculateCanPermissions(me, them, powerLevels.getContent()),
|
||||||
|
},
|
||||||
muted: this._isMuted(them, powerLevels.getContent()),
|
muted: this._isMuted(them, powerLevels.getContent()),
|
||||||
isTargetMod: them.powerLevel > powerLevels.getContent().users_default,
|
isTargetMod: them.powerLevel > powerLevels.getContent().users_default,
|
||||||
};
|
};
|
||||||
@ -675,9 +679,6 @@ module.exports = createReactClass({
|
|||||||
redactMessages: false,
|
redactMessages: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Calculate permissions for Synapse before doing the PL checks
|
|
||||||
can.synapseDeactivate = await this.context.matrixClient.isSynapseAdministrator();
|
|
||||||
|
|
||||||
const canAffectUser = them.powerLevel < me.powerLevel || isMe;
|
const canAffectUser = them.powerLevel < me.powerLevel || isMe;
|
||||||
if (!canAffectUser) {
|
if (!canAffectUser) {
|
||||||
//console.log("Cannot affect user: %s >= %s", them.powerLevel, me.powerLevel);
|
//console.log("Cannot affect user: %s >= %s", them.powerLevel, me.powerLevel);
|
||||||
|
Loading…
Reference in New Issue
Block a user