Skip to content

Commit 247ce9a

Browse files
committed
save
1 parent 94cc20c commit 247ce9a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/composables/useMenu.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ type Menu = {
2222
}
2323

2424
function useMenu(identityStateStore, identityAffectationStore) {
25-
const menuParts = ref(['Listes', 'Affectations', 'Etats','Activation'])
25+
const menuParts = ref(['Listes', 'Affectations', 'Etats','Activation','Données'])
2626
const menus = ref([
2727
{
2828
icon: 'mdi-card-account-details',
@@ -107,6 +107,13 @@ function useMenu(identityStateStore, identityAffectationStore) {
107107
path: '/identities?limit=10&skip=0&filters[&filters[%23initState]=2&sort[metadata.lastUpdatedAt]=desc',
108108
color: 'secondary',
109109
part: 'Activation'
110+
},
111+
{
112+
icon: 'mdi-download-outline',
113+
label: 'Exporter',
114+
path: '/identities/export',
115+
color: 'primary',
116+
part: 'Données'
110117
}
111118
])
112119

0 commit comments

Comments
 (0)