|
|
@@ -30,7 +30,7 @@ class ConfigurationMenu extends BaseMenu implements Menu{
|
|
|
const children:ItemsMenu = [];
|
|
|
|
|
|
if (this.$ability.can('display', 'organization_page')) {
|
|
|
- children.push(this.constructMenu('organization_page', undefined,'/organization/edit'))
|
|
|
+ children.push(this.constructMenu('organization_page', undefined, `/main/organization/${this.$store.state.profile.organization.id}/dashboard`, true))
|
|
|
}
|
|
|
|
|
|
if (this.$ability.can('display', 'cmf_licence_page')) {
|
|
|
@@ -38,7 +38,7 @@ class ConfigurationMenu extends BaseMenu implements Menu{
|
|
|
}
|
|
|
|
|
|
if (this.$ability.can('display', 'parameters_page')) {
|
|
|
- children.push(this.constructMenu('parameters', undefined,'/configuration/parameters'))
|
|
|
+ children.push(this.constructMenu('parameters', undefined,`/main/edit/parameters/${this.$store.state.profile.organization.id}`))
|
|
|
}
|
|
|
|
|
|
if (this.$ability.can('display', 'place_page')) {
|
|
|
@@ -57,6 +57,10 @@ class ConfigurationMenu extends BaseMenu implements Menu{
|
|
|
children.push(this.constructMenu('activities', undefined,'/activities/list/', true))
|
|
|
}
|
|
|
|
|
|
+ if (this.$ability.can('display', 'template_systems_page')) {
|
|
|
+ children.push(this.constructMenu('template_systems', undefined,'/template_systems/list/', true))
|
|
|
+ }
|
|
|
+
|
|
|
if (this.$ability.can('display', 'billing_settings_page')) {
|
|
|
children.push(this.constructMenu('billing_settings', undefined,'/billing_settings/' + this.$store.state.profile.organization.id, true))
|
|
|
}
|