1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-17 22:32:02 +00:00
bramw_baserow/web-frontend/modules/database/plugins.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
375 B
JavaScript
Raw Permalink Normal View History

import { BaserowPlugin } from '@baserow/modules/core/plugins'
2024-07-25 17:05:43 +00:00
import DatabaseDashboardResourceLinks from '@baserow/modules/database/components/dashboard/DatabaseDashboardResourceLinks'
export class DatabasePlugin extends BaserowPlugin {
static getType() {
return 'database'
}
2024-07-25 17:05:43 +00:00
getDashboardResourceLinksComponent() {
return DatabaseDashboardResourceLinks
}
}