spec(notes/create): 投稿されたnoteを返さないオプションを追加 (MisskeyIO#879)

This commit is contained in:
あわわわとーにゅ 2025-01-10 14:54:32 +09:00 committed by GitHub
parent 8bd7884873
commit 535a6bc756
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 20 additions and 5 deletions

View file

@ -41,7 +41,8 @@ window.onload = async () => {
document.getElementById('submit').addEventListener('click', () => {
api('notes/create', {
text: document.getElementById('text').value
text: document.getElementById('text').value,
noCreatedNote: true,
}).then(() => {
location.reload();
});