feat(alert): can customize assets & title for Misskey notification
This commit is contained in:
parent
1e0b6058cb
commit
de6aaeb79b
10 changed files with 86 additions and 18 deletions
|
@ -51,8 +51,8 @@ export const sendNoteAlert = async (text: string, user: User) => {
|
|||
*/
|
||||
export const sendNotificationAlert = async (text: string, user: User) => {
|
||||
const res = await api(user.host, 'notifications/create', {
|
||||
header: 'Misskey Tools with LycheeBridge',
|
||||
icon: 'https://t.psec.dev/assets/lcb.png',
|
||||
header: user.notificationHeader ?? 'Misskey Tools with LycheeBridge',
|
||||
icon: user.notificationIcon ?? 'https://t.psec.dev/assets/lcb.png',
|
||||
body: text,
|
||||
}, user.token);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue