Skip to content

Commit

Permalink
feat(IN) permisos plan indicaciones
Browse files Browse the repository at this point in the history
  • Loading branch information
plammel authored and negro89 committed Nov 14, 2022
1 parent 38a8402 commit 681db66
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions auth/permisos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,17 @@ export default [
{ key: 'mapaDeCamas', title: 'Mapa de camas', type: 'boolean' },
{ key: 'descargarListado', title: 'Descargar listado internación', type: 'boolean' },
{ key: 'registros', title: 'Ver registros de la internación', type: 'boolean' },
{
key: 'indicaciones',
title: 'Plan de Indicaciones',
type: 'boolean',
visibility: 'restricted', // se mantiene oculto en tanto el p.i. no esté productivo
child: [
{ key: 'create', title: 'Crear indicación', type: 'boolean' },
{ key: 'validar', title: 'Validar indicación', type: 'boolean' },
{ key: 'ejecutar', title: 'Ejecutar indicación', type: 'boolean' }
]
}
]

},
Expand Down

0 comments on commit 681db66

Please sign in to comment.