diff --git a/sapl/api/views_sessao.py b/sapl/api/views_sessao.py index cd4c4cf9f..2cb9c1e72 100644 --- a/sapl/api/views_sessao.py +++ b/sapl/api/views_sessao.py @@ -164,6 +164,11 @@ class _SessaoPlenariaViewSet: return Response({ 'sessao': pk, + 'sessao_nome': str(sessao), + 'tipo_sessao': { + 'id': sessao.tipo_id, + 'nome': getattr(sessao.tipo, 'nome', None) + }, 'expediente': expediente_items, 'ordem_dia': ordem_items })