fix(backend): 非公開の投稿に対して返信できないように (#12333)

* fix(backend): 非公開の投稿に対して返信できないように

* Update CHANGELOG.md

* fix: test
This commit is contained in:
zyoshoka 2023-11-15 11:10:45 +09:00 committed by GitHub
parent 3939360e55
commit aa6d0d4359
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 0 deletions

View file

@ -152,6 +152,7 @@ describe('Timelines', () => {
await api('/following/create', { userId: bob.id }, alice);
await api('/following/create', { userId: carol.id }, alice);
await api('/following/create', { userId: carol.id }, bob);
await api('/following/update', { userId: bob.id, withReplies: true }, alice);
await sleep(1000);
const carolNote = await post(carol, { text: 'hi', visibility: 'followers' });