spec(notes/create): 投稿されたnoteを返さないオプションを追加 (MisskeyIO#879)
This commit is contained in:
parent
8bd7884873
commit
535a6bc756
7 changed files with 20 additions and 5 deletions
|
@ -543,6 +543,7 @@ export function getRenoteMenu(props: {
|
|||
misskeyApi('notes/create', {
|
||||
renoteId: appearNote.id,
|
||||
channelId: appearNote.channelId,
|
||||
noCreatedNote: true,
|
||||
}).then(() => {
|
||||
os.toast(i18n.ts.renoted);
|
||||
});
|
||||
|
@ -589,6 +590,7 @@ export function getRenoteMenu(props: {
|
|||
localOnly,
|
||||
visibility,
|
||||
renoteId: appearNote.id,
|
||||
noCreatedNote: true,
|
||||
}).then(() => {
|
||||
os.toast(i18n.ts.renoted);
|
||||
});
|
||||
|
@ -630,6 +632,7 @@ export function getRenoteMenu(props: {
|
|||
misskeyApi('notes/create', {
|
||||
renoteId: appearNote.id,
|
||||
channelId: channel.id,
|
||||
noCreatedNote: true,
|
||||
}).then(() => {
|
||||
os.toast(i18n.tsx.renotedToX({ name: channel.name }));
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue