mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-24 05:03:02 +00:00
15 lines
235 B
JavaScript
15 lines
235 B
JavaScript
import { Application } from '@/core/applications'
|
|
|
|
export class DatabaseApplication extends Application {
|
|
getType() {
|
|
return 'database'
|
|
}
|
|
|
|
getIconClass() {
|
|
return 'database'
|
|
}
|
|
|
|
getName() {
|
|
return 'Database'
|
|
}
|
|
}
|