1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-15 21:50:25 +00:00

Resolve "Show database and tables duplication job progress in the left sidebar"

This commit is contained in:
Davide Silvestri 2022-09-15 16:57:29 +00:00
parent 5a60bb0d9a
commit 335a40255d
23 changed files with 688 additions and 194 deletions
web-frontend/modules/database

View file

@ -1,4 +1,5 @@
import { DatabaseApplicationType } from '@baserow/modules/database/applicationTypes'
import { DuplicateTableJobType } from '@baserow/modules/database/jobTypes'
import {
GridViewType,
GalleryViewType,
@ -225,6 +226,7 @@ export default (context) => {
app.$registry.register('plugin', new DatabasePlugin(context))
app.$registry.register('application', new DatabaseApplicationType(context))
app.$registry.register('job', new DuplicateTableJobType(context))
app.$registry.register('view', new GridViewType(context))
app.$registry.register('view', new GalleryViewType(context))
app.$registry.register('view', new FormViewType(context))