mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-21 12:10:32 +00:00
24 lines
411 B
JavaScript
24 lines
411 B
JavaScript
import { Application } from '@/core/applications'
|
|
import Sidebar from '@/modules/database/components/Sidebar'
|
|
|
|
export class DatabaseApplication extends Application {
|
|
getType() {
|
|
return 'database'
|
|
}
|
|
|
|
getIconClass() {
|
|
return 'database'
|
|
}
|
|
|
|
getName() {
|
|
return 'Database'
|
|
}
|
|
|
|
getRouteName() {
|
|
return 'application-database'
|
|
}
|
|
|
|
getSelectedSidebarComponent() {
|
|
return Sidebar
|
|
}
|
|
}
|