Add region UI: Don't use URL validation

Don't use URL validation for endpoint, becuase it doesn't accept
hostnames without domains (i.e., http://localhost:8080/client)
This commit is contained in:
Brian Federle 2013-02-27 09:13:28 -08:00
parent 289c433cb9
commit fb9afaad2a
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@
fields: {
id: { label: 'label.id', validation: { required: true } },
name: { label: 'label.name', validation: { required: true } },
endpoint: { label: 'label.endpoint', validation: { url: true, required: true } },
endpoint: { label: 'label.endpoint', validation: { required: true } },
userapikey: { label: 'label.api.key' },
userapisecretkey: { label: 'label.s3.secret_key' }
}