1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-03 08:29:54 +00:00
This commit is contained in:
Bram Wiepjes 2024-04-02 19:50:44 +00:00
parent 7021acdb64
commit 1298aa7eec
98 changed files with 2393 additions and 108 deletions
web-frontend/modules/database

View file

@ -32,6 +32,7 @@ import {
UUIDFieldType,
AutonumberFieldType,
PasswordFieldType,
AIFieldType,
} from '@baserow/modules/database/fieldTypes'
import {
EqualViewFilterType,
@ -257,6 +258,7 @@ import {
FormSubmittedNotificationType,
} from '@baserow/modules/database/notificationTypes'
import { HistoryRowModalSidebarType } from '@baserow/modules/database/rowModalSidebarTypes'
import { FieldsDataProviderType } from '@baserow/modules/database/dataProviderTypes'
import en from '@baserow/modules/database/locales/en.json'
import fr from '@baserow/modules/database/locales/fr.json'
@ -465,6 +467,7 @@ export default (context) => {
app.$registry.register('field', new UUIDFieldType(context))
app.$registry.register('field', new AutonumberFieldType(context))
app.$registry.register('field', new PasswordFieldType(context))
app.$registry.register('field', new AIFieldType(context))
app.$registry.register('importer', new CSVImporterType(context))
app.$registry.register('importer', new PasteImporterType(context))
@ -709,6 +712,11 @@ export default (context) => {
app.$registry.register('formViewMode', new FormViewFormModeType(context))
app.$registry.register(
'databaseDataProvider',
new FieldsDataProviderType(context)
)
// notifications
app.$registry.register(
'notification',