Implement @everyone/@here (#8890)

Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com>
This commit is contained in:
Kristina
2025-05-12 14:42:58 +07:00
committed by GitHub
parent 137260fe5b
commit 3295adee57
47 changed files with 675 additions and 351 deletions
+4 -2
View File
@@ -55,7 +55,8 @@ export type TypeMatchFunc = Resource<
person: Ref<Person>,
socialIds: PersonId[],
type: NotificationType,
control: TriggerControl
control: TriggerControl,
account: AccountUuid
) => boolean | Promise<boolean>
>
@@ -123,6 +124,7 @@ export default plugin(serverNotificationId, {
PushNotificationsHandler: '' as Resource<TriggerFunc>
},
function: {
IsUserEmployeeInFieldValueTypeMatch: '' as TypeMatchFunc
IsUserEmployeeInFieldValueTypeMatch: '' as TypeMatchFunc,
MentionTypeMatch: '' as TypeMatchFunc
}
})