mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-27 11:13:37 -05:00
35 lines
829 B
JavaScript
35 lines
829 B
JavaScript
/*********************************************
|
|
* Copyright (c) 2014 AnsibleWorks, Inc.
|
|
*
|
|
* JobEventData.js
|
|
* Form definition for Job Events -JSON view
|
|
*
|
|
*
|
|
*/
|
|
/**
|
|
* @ngdoc function
|
|
* @name forms.function:JobEventData
|
|
* @description Not sure if this is used...
|
|
*/
|
|
|
|
export default
|
|
angular.module('JobEventDataDefinition', [])
|
|
.value('JobEventDataForm', {
|
|
|
|
editTitle: '{{ id }} - {{ event_display }}',
|
|
name: 'job_events',
|
|
well: false,
|
|
'class': 'horizontal-narrow',
|
|
|
|
fields: {
|
|
event_data: {
|
|
label: false,
|
|
type: 'textarea',
|
|
readonly: true,
|
|
rows: 18,
|
|
'class': 'modal-input-xxlarge'
|
|
}
|
|
}
|
|
|
|
}); //Form
|