1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-18 11:18:40 +00:00
bramw_baserow/web-frontend/modules/database/plugins.js

12 lines
371 B
JavaScript

import { BaserowPlugin } from '@baserow/modules/core/plugins'
import DatabaseDashboardSidebarLinks from '@baserow/modules/database/components/dashboard/DatabaseDashboardSidebarLinks'
export class DatabasePlugin extends BaserowPlugin {
static getType() {
return 'database'
}
getDashboardSidebarLinksComponent() {
return DatabaseDashboardSidebarLinks
}
}