1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-11 11:55:34 +00:00

Resolve "Rollup field"

This commit is contained in:
Bram Wiepjes 2023-06-12 08:57:19 +00:00 committed by Nigel Gott
parent 78db1774a0
commit cdf35c9554
46 changed files with 1829 additions and 370 deletions
web-frontend/modules/database

View file

@ -23,6 +23,7 @@ import {
CreatedOnFieldType,
FormulaFieldType,
CountFieldType,
RollupFieldType,
LookupFieldType,
MultipleCollaboratorsFieldType,
} from '@baserow/modules/database/fieldTypes'
@ -407,6 +408,7 @@ export default (context) => {
app.$registry.register('field', new PhoneNumberFieldType(context))
app.$registry.register('field', new FormulaFieldType(context))
app.$registry.register('field', new CountFieldType(context))
app.$registry.register('field', new RollupFieldType(context))
app.$registry.register('field', new LookupFieldType(context))
app.$registry.register('field', new MultipleCollaboratorsFieldType(context))