Fix unverified badge
What does this MR do and why?
Fixes an issue where verified namespaces in a SM instance cannot update to UNVERIFIED
References
How to set up and validate locally
- As an admin, run the following mutation in graphql-explorer if you don't have any verified namespaces. If you do, skip to step 2.
mutation {
verifiedNamespaceCreate(
input: {
namespacePath: "root"
verificationLevel: VERIFIED_CREATOR_SELF_MANAGED
}
) {
errors
}
}
- Try to update to
UNVERIFIED
mutation {
verifiedNamespaceCreate(
input: {
namespacePath: "root"
verificationLevel: UNVERIFIED
}
) {
errors
}
}
| Before |
After - NO ERROR! |
|---|---|
|
|
MR acceptance checklist
Evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.