1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-04 08:50:24 +00:00

1️⃣ Autonumber: Add field type

This commit is contained in:
Davide Silvestri 2023-12-13 08:48:58 +00:00
parent c71bf7ad1c
commit 55f43b59d8
40 changed files with 1322 additions and 46 deletions
web-frontend/modules/database

View file

@ -29,6 +29,7 @@ import {
LookupFieldType,
MultipleCollaboratorsFieldType,
UUIDFieldType,
AutonumberFieldType,
} from '@baserow/modules/database/fieldTypes'
import {
EqualViewFilterType,
@ -457,6 +458,7 @@ export default (context) => {
app.$registry.register('field', new LookupFieldType(context))
app.$registry.register('field', new MultipleCollaboratorsFieldType(context))
app.$registry.register('field', new UUIDFieldType(context))
app.$registry.register('field', new AutonumberFieldType(context))
app.$registry.register('importer', new CSVImporterType(context))
app.$registry.register('importer', new PasteImporterType(context))