mirror of
https://github.com/ansible/awx.git
synced 2026-01-20 22:18:01 -03:30
Updated license text per https://docs.google.com/a/ansible.com/document/d/1bvcfoV8j5z0OB7ZQsDwYY1WB58odnchp9vCic2F__eo
38 lines
852 B
JavaScript
38 lines
852 B
JavaScript
/*********************************************
|
|
* Copyright (c) 2014 AnsibleWorks, Inc.
|
|
*
|
|
* License.js
|
|
* Form definition for Organization model
|
|
*
|
|
*
|
|
*/
|
|
angular.module('LicenseUpdateFormDefinition', [])
|
|
.value('LicenseUpdateForm', {
|
|
|
|
name: 'license',
|
|
well: false,
|
|
|
|
fields: {
|
|
license_json: {
|
|
label: 'License File',
|
|
type: 'textarea',
|
|
addRequired: true,
|
|
editRequird: true,
|
|
rows: 10,
|
|
'default': '---'
|
|
}
|
|
},
|
|
|
|
buttons: {
|
|
form_submit: {
|
|
label: "Submit",
|
|
"class": "pull-right btn-primary",
|
|
ngClick: "submitLicenseKey()",
|
|
ngDisabled: true
|
|
}
|
|
},
|
|
|
|
related: { }
|
|
|
|
}); //LicenseUpdateForm
|