mirror of
https://github.com/hcengineering/platform.git
synced 2025-05-10 17:30:51 +00:00
Some checks are pending
CI / build (push) Waiting to run
CI / svelte-check (push) Blocked by required conditions
CI / formatting (push) Blocked by required conditions
CI / test (push) Blocked by required conditions
CI / uitest (push) Waiting to run
CI / uitest-pg (push) Waiting to run
CI / uitest-qms (push) Waiting to run
CI / docker-build (push) Blocked by required conditions
CI / dist-build (push) Blocked by required conditions
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com>
28 lines
794 B
TypeScript
28 lines
794 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>,
|
|
OnInvite: '' as Resource<TriggerFunc>,
|
|
OnKnock: '' as Resource<TriggerFunc>
|
|
}
|
|
})
|