mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-23 21:02:24 +02:00
Signed-off-by: Anton Alexeyev <alexeyev.anton@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
27 lines
751 B
TypeScript
27 lines
751 B
TypeScript
import type { Plugin, Resource } from '@hcengineering/platform'
|
|
import { plugin } from '@hcengineering/platform'
|
|
import { TriggerFunc } from '@hcengineering/server-core'
|
|
import { Presenter } from '@hcengineering/server-notification'
|
|
|
|
/**
|
|
* @public
|
|
*/
|
|
export const serverLoveId = 'server-love' as Plugin
|
|
|
|
/**
|
|
* @public
|
|
*/
|
|
export default plugin(serverLoveId, {
|
|
function: {
|
|
MeetingMinutesHTMLPresenter: '' as Resource<Presenter>,
|
|
MeetingMinutesTextPresenter: '' as Resource<Presenter>
|
|
},
|
|
trigger: {
|
|
OnEmployee: '' as Resource<TriggerFunc>,
|
|
OnUserStatus: '' as Resource<TriggerFunc>,
|
|
OnParticipantInfo: '' as Resource<TriggerFunc>,
|
|
OnRoomInfo: '' as Resource<TriggerFunc>,
|
|
OnKnock: '' as Resource<TriggerFunc>
|
|
}
|
|
})
|