mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-18 11:18:40 +00:00
12 lines
371 B
JavaScript
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
|
|
}
|
|
}
|