1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-30 15:20:01 +00:00

Resolve "Receive notification on form submission"

This commit is contained in:
Davide Silvestri 2023-11-23 09:25:54 +00:00
parent 37764dfd98
commit d1702e40b1
43 changed files with 1299 additions and 236 deletions
web-frontend/modules/database

View file

@ -242,7 +242,10 @@ import {
import { FormViewFormModeType } from '@baserow/modules/database/formViewModeTypes'
import { CollaborativeViewOwnershipType } from '@baserow/modules/database/viewOwnershipTypes'
import { DatabasePlugin } from '@baserow/modules/database/plugins'
import { CollaboratorAddedToRowNotificationType } from '@baserow/modules/database/notificationTypes'
import {
CollaboratorAddedToRowNotificationType,
FormSubmittedNotificationType,
} from '@baserow/modules/database/notificationTypes'
import { HistoryRowModalSidebarType } from '@baserow/modules/database/rowModalSidebarTypes'
import en from '@baserow/modules/database/locales/en.json'
@ -685,6 +688,10 @@ export default (context) => {
'notification',
new CollaboratorAddedToRowNotificationType(context)
)
app.$registry.register(
'notification',
new FormSubmittedNotificationType(context)
)
app.$registry.register(
'rowModalSidebar',