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

Resolve "Created by field type"

This commit is contained in:
Davide Silvestri 2023-12-11 10:02:00 +00:00
parent df49e52393
commit aa9a793dbe
37 changed files with 1368 additions and 42 deletions
web-frontend/modules/database

View file

@ -22,6 +22,7 @@ import {
MultipleSelectFieldType,
PhoneNumberFieldType,
CreatedOnFieldType,
CreatedByFieldType,
FormulaFieldType,
CountFieldType,
RollupFieldType,
@ -443,6 +444,7 @@ export default (context) => {
app.$registry.register('field', new LastModifiedFieldType(context))
app.$registry.register('field', new LastModifiedByFieldType(context))
app.$registry.register('field', new CreatedOnFieldType(context))
app.$registry.register('field', new CreatedByFieldType(context))
app.$registry.register('field', new URLFieldType(context))
app.$registry.register('field', new EmailFieldType(context))
app.$registry.register('field', new FileFieldType(context))