mirror of
https://github.com/matrix-org/mjolnir.git
synced 2024-10-01 01:36:06 -04:00
4d5447cb50
* Rework the banning and unbanning of entities in PolicyLists. 1. We keep track of the event that created a list rule so that we can remove the rule by having a way to determine the original state key for the rule. This is because the state key of rules can be anything and should not be relied on by Mjolnir to unban things (which it was doing). 2. The old scheme for producing a state key was causing for some entities to escape bans https://github.com/matrix-org/mjolnir/issues/322. We could have used a hash or something similar, but we know that the reason for the `rule:${entity}` scheme existed was for ease of debugging and finding rules in devtools. So instead we have followed a scheme simalar to bridges where the first character of an mxid is replaced with an underscore. Everything else just gets put into the state key. Since domains can't have '@' and room ids, aliases can't either. 3. We have stopped the need for Mjolnir to wait for the next response from sync after banning, unbanning an entity so that we can apply ACL's sooner. * Use PolicyList's `banEntity` method to create imported rules. |
||
---|---|---|
.. | ||
commands | ||
abuseReportTest.ts | ||
acceptInvitesFromSpaceTest.ts | ||
banListTest.ts | ||
clientHelper.ts | ||
detectFederationLagTest.ts | ||
fixtures.ts | ||
helloTest.ts | ||
manualLaunchScript.ts | ||
mjolnirSetupUtils.ts | ||
policyConsumptionTest.ts | ||
protectionSettingsTest.ts | ||
reportPollingTest.ts | ||
roomMembersTest.ts | ||
standardConsequenceTest.ts | ||
throttleQueueTest.ts | ||
throttleTest.ts | ||
timelinePaginationTest.ts | ||
utilsTest.ts |