Github user bbende commented on a diff in the pull request:
https://github.com/apache/nifi-registry/pull/149#discussion_r241191410
--- Diff:
nifi-registry-core/nifi-registry-data-model/src/main/java/org/apache/nifi/registry/bucket/Bucket.java
---
@@ -41,6 +41,8 @@
private String description;
+ private Boolean allowExtensionBundleRedeploy;
--- End diff --
Right now the way it is implemented, SNAPSHOTS are treated special and
always allow redeployment, so the boolean is really just for whether or not
"released" artifacts (i.e. non-snapshot) can be redeployed.
Maybe there is a better name for the field though?
I was mostly thinking of how Nexus has some kind of global checkbox that
lets you say whether you can redeploy released artifacts to the given Nexus
instance.
---