标签: jhipster
我无法在route.ts中添加两个以上的权限。因为我的USER_ROLE表中有五个jhi_authority。
USER_ROLE
jhi_authority
答案 0 :(得分:1)
您在评论中显示的语法是错误的,{ authorities: ['ROLE_DOCTOR', 'ROLE_ADMIN', 'ROLE_PATIENT'] } 需要一个像这样的字符串数组:
{ authorities: ['ROLE_DOCTOR', 'ROLE_ADMIN', 'ROLE_PATIENT'] }
security_group