1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-21 23:37:55 +00:00
bramw_baserow/web-frontend/modules/database/plugins.js
2024-07-25 17:05:43 +00:00

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
}
}