mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 02:13:09 +02:00
feat: 'server' webhook payload which hold misskey server url (#11752)
This commit is contained in:
parent
b60ff1f1ce
commit
50ec129b87
2 changed files with 2 additions and 0 deletions
|
@ -42,6 +42,7 @@
|
||||||
- Fix: ノート検索 `notes/search` にてhostを指定した際に検索結果に反映されるように
|
- Fix: ノート検索 `notes/search` にてhostを指定した際に検索結果に反映されるように
|
||||||
- cacheRemoteFilesの初期値はfalseになりました
|
- cacheRemoteFilesの初期値はfalseになりました
|
||||||
- ファイルアップロード時等にファイル名の拡張子を修正する関数(correctFilename)の挙動を改善
|
- ファイルアップロード時等にファイル名の拡張子を修正する関数(correctFilename)の挙動を改善
|
||||||
|
- Webhookのペイロードにサーバーのurlが含まれるようになりました
|
||||||
- Fix: 一部のfeatured noteを照会できない問題を修正
|
- Fix: 一部のfeatured noteを照会できない問題を修正
|
||||||
- Fix: muteがapiからのuser list timeline取得で機能しない問題を修正
|
- Fix: muteがapiからのuser list timeline取得で機能しない問題を修正
|
||||||
- Fix: ジョブキュー管理画面の認証を回避できる問題を修正
|
- Fix: ジョブキュー管理画面の認証を回避できる問題を修正
|
||||||
|
|
|
@ -47,6 +47,7 @@ export class WebhookDeliverProcessorService {
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
},
|
},
|
||||||
body: JSON.stringify({
|
body: JSON.stringify({
|
||||||
|
server: this.config.url,
|
||||||
hookId: job.data.webhookId,
|
hookId: job.data.webhookId,
|
||||||
userId: job.data.userId,
|
userId: job.data.userId,
|
||||||
eventId: job.data.eventId,
|
eventId: job.data.eventId,
|
||||||
|
|
Loading…
Reference in a new issue