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

003 📚: Support for mentions in long text field

This commit is contained in:
Davide Silvestri 2024-04-05 15:25:38 +00:00
parent 976bccde3b
commit a41ab1ac87
43 changed files with 1555 additions and 175 deletions
web-frontend/modules/database

View file

@ -257,6 +257,7 @@ import { DatabasePlugin } from '@baserow/modules/database/plugins'
import {
CollaboratorAddedToRowNotificationType,
FormSubmittedNotificationType,
UserMentionInRichTextFieldNotificationType,
} from '@baserow/modules/database/notificationTypes'
import { HistoryRowModalSidebarType } from '@baserow/modules/database/rowModalSidebarTypes'
import { FieldsDataProviderType } from '@baserow/modules/database/dataProviderTypes'
@ -735,6 +736,10 @@ export default (context) => {
'notification',
new FormSubmittedNotificationType(context)
)
app.$registry.register(
'notification',
new UserMentionInRichTextFieldNotificationType(context)
)
app.$registry.register(
'rowModalSidebar',