Browse Source

Modules orders

Vova Tkach 6 years ago
parent
commit
425e2e2620

+ 1 - 1
engine/backend/modules/module_empty.go

@@ -26,7 +26,7 @@ func (this *Module) Module_empty_icon() string {
 }
 
 func (this *Module) Module_empty_order() int {
-	return 999
+	return 2
 }
 
 func (this *Module) Module_empty_submenu() []utils.ModuleSubMenu {

+ 1 - 1
engine/backend/modules/module_settings.go

@@ -26,7 +26,7 @@ func (this *Module) Module_settings_icon() string {
 }
 
 func (this *Module) Module_settings_order() int {
-	return 0
+	return 101
 }
 
 func (this *Module) Module_settings_submenu() []utils.ModuleSubMenu {

+ 1 - 1
engine/backend/modules/module_users.go

@@ -26,7 +26,7 @@ func (this *Module) Module_users_icon() string {
 }
 
 func (this *Module) Module_users_order() int {
-	return 0
+	return 100
 }
 
 func (this *Module) Module_users_submenu() []utils.ModuleSubMenu {