Feat: register_post_form_actionでcwを変更可能にする (#11911)

* 投稿フォームのアクション追加するプラグインでCWを変更可能にする

* Update CHANGELOG
This commit is contained in:
taichan 2023-09-28 15:35:00 +09:00 committed by GitHub
parent 772d2432b6
commit 63c6a9bb80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View file

@ -20,6 +20,7 @@
### Client ### Client
- Enhance: モデレーションログ機能の強化 - Enhance: モデレーションログ機能の強化
- Plugin:register_post_form_actionを用いてCWを取得・変更できるように
### Server ### Server
- Enhance: MasterプロセスのPIDを書き出せるように - Enhance: MasterプロセスのPIDを書き出せるように

View file

@ -819,8 +819,10 @@ function showActions(ev) {
action: () => { action: () => {
action.handler({ action.handler({
text: text, text: text,
cw: cw,
}, (key, value) => { }, (key, value) => {
if (key === 'text') { text = value; } if (key === 'text') { text = value; }
if (key === 'cw') { useCw = value !== null; cw = value; }
}); });
}, },
})), ev.currentTarget ?? ev.target); })), ev.currentTarget ?? ev.target);