Commit 2ba5cb8b authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:ambulance: fix(dashboard): Add priorities to dashboard tabs

This will allow to sort dashboard tabs to have user related tabs first
 and systems related tabs after.

issue #5737
Showing with 3 additions and 1 deletion
+3 -1
...@@ -26,8 +26,9 @@ class dashboardPassword extends simplePlugin ...@@ -26,8 +26,9 @@ class dashboardPassword extends simplePlugin
'plShortName' => _('Passwords'), 'plShortName' => _('Passwords'),
'plDescription' => _('Statistics about passwords'), 'plDescription' => _('Statistics about passwords'),
'plObjectType' => array('dashboard'), 'plObjectType' => array('dashboard'),
'plPriority' => 12,
'plProvidedAcls' => array() 'plProvidedAcls' => array()
); );
} }
......
...@@ -27,6 +27,7 @@ class dashboardUsers extends simplePlugin ...@@ -27,6 +27,7 @@ class dashboardUsers extends simplePlugin
'plShortName' => _('Users'), 'plShortName' => _('Users'),
'plDescription' => _('Statistics about users'), 'plDescription' => _('Statistics about users'),
'plObjectType' => array('dashboard'), 'plObjectType' => array('dashboard'),
'plPriority' => 10,
'plProvidedAcls' => array() 'plProvidedAcls' => array()
); );
......
  • bmortier @bmortier

    mentioned in commit 71a36661

    By Côme Chilliet on 2017-11-29T14:46:47 (imported from GitLab)

    ·

    mentioned in commit 71a36661

    By Côme Chilliet on 2017-11-29T14:46:47 (imported from GitLab)

    Toggle commit list
  • bmortier @bmortier

    mentioned in merge request !83

    By Côme Chilliet on 2017-11-29T14:47:00 (imported from GitLab)

    ·

    mentioned in merge request !83

    By Côme Chilliet on 2017-11-29T14:47:00 (imported from GitLab)

    Toggle commit list
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment