Hi! I was wondering why I wasn't seeing the check mark in the summary UI when I selected the verbs:
in a template. Turns out, the frontend looks out for "read", which is not a valid verb for kubernetes:
|
rule.verbs.includes('*') || rule.verbs.includes('read') |
This might also apply to "update", since some users might not want to let others create stuff, but only update it.
By the way: Thanks a lot for your work!
Hi! I was wondering why I wasn't seeing the check mark in the summary UI when I selected the verbs:
in a template. Turns out, the frontend looks out for "read", which is not a valid verb for kubernetes:
permission-manager/web-client/src/components/TemplateInfo.tsx
Line 38 in fb6f65e
This might also apply to "update", since some users might not want to let others create stuff, but only update it.
By the way: Thanks a lot for your work!