mirror of
https://github.com/SARL-PACIFIC-ERP/odoo-sh-test.git
synced 2025-06-25 09:32:22 +00:00
19 lines
466 B
JavaScript
19 lines
466 B
JavaScript
/** @odoo-module **/
|
|
|
|
import { Component } from "@odoo/owl";
|
|
import { registry } from "@web/core/registry";
|
|
import { Layout } from "@web/search/layout";
|
|
|
|
class AwesomeDashboard extends Component {
|
|
static template = "awesome_dashboard.AwesomeDashboard";
|
|
static components = { Layout };
|
|
|
|
setup() {
|
|
this.display = {
|
|
controlPanel: {},
|
|
};
|
|
}
|
|
}
|
|
|
|
registry.category("actions").add("awesome_dashboard.dashboard", AwesomeDashboard);
|