mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-21 23:37:55 +00:00
13 lines
375 B
JavaScript
13 lines
375 B
JavaScript
import { BaserowPlugin } from '@baserow/modules/core/plugins'
|
|
import DatabaseDashboardResourceLinks from '@baserow/modules/database/components/dashboard/DatabaseDashboardResourceLinks'
|
|
|
|
export class DatabasePlugin extends BaserowPlugin {
|
|
static getType() {
|
|
return 'database'
|
|
}
|
|
|
|
getDashboardResourceLinksComponent() {
|
|
return DatabaseDashboardResourceLinks
|
|
}
|
|
}
|