Use past-tense for some n-tag values
This commit is contained in:
parent
8802cbd779
commit
594f37ea33
|
@ -107,13 +107,13 @@ const adminActionController: AppController = async (c) => {
|
||||||
n.sensitive = true;
|
n.sensitive = true;
|
||||||
}
|
}
|
||||||
if (data.type === 'disable') {
|
if (data.type === 'disable') {
|
||||||
n.disable = true;
|
n.disabled = true;
|
||||||
}
|
}
|
||||||
if (data.type === 'silence') {
|
if (data.type === 'silence') {
|
||||||
n.silence = true;
|
n.silenced = true;
|
||||||
}
|
}
|
||||||
if (data.type === 'suspend') {
|
if (data.type === 'suspend') {
|
||||||
n.suspend = true;
|
n.suspended = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
await updateUser(authorId, n, c);
|
await updateUser(authorId, n, c);
|
||||||
|
|
|
@ -45,10 +45,10 @@ async function handleEvent(event: DittoEvent, signal: AbortSignal): Promise<void
|
||||||
|
|
||||||
const n = getTagSet(event.user?.tags ?? [], 'n');
|
const n = getTagSet(event.user?.tags ?? [], 'n');
|
||||||
|
|
||||||
if (n.has('disable')) {
|
if (n.has('disabled')) {
|
||||||
throw new RelayError('blocked', 'user is disabled');
|
throw new RelayError('blocked', 'user is disabled');
|
||||||
}
|
}
|
||||||
if (n.has('suspend')) {
|
if (n.has('suspended')) {
|
||||||
throw new RelayError('blocked', 'user is suspended');
|
throw new RelayError('blocked', 'user is suspended');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@ export class AdminStore implements NStore {
|
||||||
|
|
||||||
const n = getTagSet(user?.tags ?? [], 'n');
|
const n = getTagSet(user?.tags ?? [], 'n');
|
||||||
|
|
||||||
if (n.has('disable') || n.has('suspend')) {
|
if (n.has('disabled') || n.has('suspended')) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue