mirror of
https://github.com/fleetbase/fleetbase.git
synced 2025-12-20 06:32:18 +00:00
37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
import { faGithub } from '@fortawesome/free-brands-svg-icons';
|
|
|
|
export function initialize(application) {
|
|
const universe = application.lookup('service:universe');
|
|
const defaultWidgets = [
|
|
{
|
|
widgetId: 'fleetbase-blog',
|
|
name: 'Fleetbase Blog',
|
|
description: 'Lists latest news and events from the Fleetbase official team.',
|
|
icon: 'newspaper',
|
|
component: 'fleetbase-blog',
|
|
grid_options: { w: 8, h: 9, minW: 8, minH: 9 },
|
|
options: {
|
|
title: 'Fleetbase Blog',
|
|
},
|
|
},
|
|
{
|
|
widgetId: 'fleetbase-github-card',
|
|
name: 'Github Card',
|
|
description: 'Displays current Github stats from the official Fleetbase repo.',
|
|
icon: faGithub,
|
|
component: 'github-card',
|
|
grid_options: { w: 4, h: 8, minW: 4, minH: 8 },
|
|
options: {
|
|
title: 'Github Card',
|
|
},
|
|
},
|
|
];
|
|
|
|
universe.registerDefaultDashboardWidgets(defaultWidgets);
|
|
universe.registerDashboardWidgets(defaultWidgets);
|
|
}
|
|
|
|
export default {
|
|
initialize,
|
|
};
|