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

Resolve "Add tourl formula to support operations on url field type"

This commit is contained in:
Przemyslaw Kukulski 2024-08-01 19:50:43 +00:00
parent 7840ad8547
commit 19a84d4c5d
8 changed files with 104 additions and 1 deletions
web-frontend/modules/database

View file

@ -236,6 +236,7 @@ import {
BaserowGetFileVisibleName,
BaserowIndex,
BaserowGetFileCount,
BaserowToUrl,
} from '@baserow/modules/database/formula/functions'
import {
BaserowFormulaArrayType,
@ -726,6 +727,7 @@ export default (context) => {
app.$registry.register('formula_function', new BaserowGetFileCount(context))
app.$registry.register('formula_function', new BaserowIndex(context))
app.$registry.register('formula_function', new BaserowToUrl(context))
// Formula Types
app.$registry.register('formula_type', new BaserowFormulaTextType(context))