mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-09 19:43:09 +02:00
parent
632af91878
commit
93230815f5
3 changed files with 2 additions and 16 deletions
|
@ -28,6 +28,7 @@
|
||||||
- ActivityPub: not reacted な Undo.Like がinboxに滞留するのを修正
|
- ActivityPub: not reacted な Undo.Like がinboxに滞留するのを修正
|
||||||
|
|
||||||
### Changes
|
### Changes
|
||||||
|
- 連合の考慮に問題があることなどが分かったため、モデレーターをブロックできない仕様を廃止しました
|
||||||
- データベースにログを保存しないようになりました
|
- データベースにログを保存しないようになりました
|
||||||
- ログを永続化したい場合はsyslogを利用してください
|
- ログを永続化したい場合はsyslogを利用してください
|
||||||
|
|
||||||
|
|
|
@ -43,12 +43,6 @@ export const meta = {
|
||||||
code: 'ALREADY_BLOCKING',
|
code: 'ALREADY_BLOCKING',
|
||||||
id: '787fed64-acb9-464a-82eb-afbd745b9614'
|
id: '787fed64-acb9-464a-82eb-afbd745b9614'
|
||||||
},
|
},
|
||||||
|
|
||||||
cannotBlockModerator: {
|
|
||||||
message: 'Cannot block a moderator or an admin.',
|
|
||||||
code: 'CANNOT_BLOCK_MODERATOR',
|
|
||||||
id: '8544aaef-89fb-e470-9f6c-385d38b474f5'
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
res: {
|
res: {
|
||||||
|
@ -82,12 +76,7 @@ export default define(meta, async (ps, user) => {
|
||||||
throw new ApiError(meta.errors.alreadyBlocking);
|
throw new ApiError(meta.errors.alreadyBlocking);
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
|
||||||
await create(blocker, blockee);
|
await create(blocker, blockee);
|
||||||
} catch (e) {
|
|
||||||
if (e.id === 'e42b7890-5e4d-9d9c-d54b-cf4dd30adfb5') throw new ApiError(meta.errors.cannotBlockModerator);
|
|
||||||
throw e;
|
|
||||||
}
|
|
||||||
|
|
||||||
NoteWatchings.delete({
|
NoteWatchings.delete({
|
||||||
userId: blocker.id,
|
userId: blocker.id,
|
||||||
|
|
|
@ -12,10 +12,6 @@ import { genId } from '@/misc/gen-id';
|
||||||
import { IdentifiableError } from '@/misc/identifiable-error';
|
import { IdentifiableError } from '@/misc/identifiable-error';
|
||||||
|
|
||||||
export default async function(blocker: User, blockee: User) {
|
export default async function(blocker: User, blockee: User) {
|
||||||
if (blockee.isAdmin || blockee.isModerator) {
|
|
||||||
throw new IdentifiableError('e42b7890-5e4d-9d9c-d54b-cf4dd30adfb5');
|
|
||||||
}
|
|
||||||
|
|
||||||
await Promise.all([
|
await Promise.all([
|
||||||
cancelRequest(blocker, blockee),
|
cancelRequest(blocker, blockee),
|
||||||
cancelRequest(blockee, blocker),
|
cancelRequest(blockee, blocker),
|
||||||
|
|
Loading…
Reference in a new issue