Allow namespaces to be between 2 and 255 characters in length
[Delivers #137924329]
This commit is contained in:
parent
e2748fccd9
commit
7c7a07fb5a
8 changed files with 43 additions and 39 deletions
|
@ -42,16 +42,14 @@
|
|||
<label for="orgName">Organization Name</label>
|
||||
<div class="field-row">
|
||||
<span class="field-container">
|
||||
<span class="namespace-input" binding="org.name" is-back-incompat="isBackIncompat" namespace-title="Organization name"></span>
|
||||
</span>
|
||||
<span class="co-alert co-alert-warning thin" ng-show="isBackIncompat">
|
||||
Organization names with dots or dashes are incompatible with Docker version 1.8 or older
|
||||
<span class="namespace-input" binding="org.name" back-incompat-message="backIncompatMessage" namespace-title="Organization name"></span>
|
||||
</span>
|
||||
<span class="co-alert co-alert-warning thin" ng-show="backIncompatMessage">{{ backIncompatMessage }}</span>
|
||||
<span class="co-alert co-alert-danger thin" ng-show="!newOrgForm.namespaceField.$error.required && newOrgForm.namespaceField.$invalid">
|
||||
Organization names must be alphanumeric, be at least four characters in length and max thirty characters in length
|
||||
Organization names must be alphanumeric, be at least 2 characters in length and max 255 characters in length
|
||||
</span>
|
||||
</div>
|
||||
<span class="description">This will also be the namespace for your repositories. Must be alphanumeric, all lowercase, at least four characters long and at most thirty characters long.</span>
|
||||
<span class="description">This will also be the namespace for your repositories. Must be alphanumeric, all lowercase, at least 2 characters long and at most 255 characters long.</span>
|
||||
</div>
|
||||
|
||||
<div class="form-group nested" quay-require="['MAILING']">
|
||||
|
|
Reference in a new issue