mirror of
https://github.com/ansible/awx.git
synced 2026-03-26 13:25:02 -02:30
27 lines
537 B
JavaScript
27 lines
537 B
JavaScript
/*********************************************
|
|
* Copyright (c) 2013 AnsibleWorks, Inc.
|
|
*
|
|
* InventoryGroups.js
|
|
* Form definition for Groups model
|
|
*
|
|
*
|
|
*/
|
|
angular.module('InventoryGroupsFormDefinition', [])
|
|
.value(
|
|
'InventoryGroupsForm', {
|
|
|
|
type: 'groupsview',
|
|
title: "groupTitle",
|
|
editTitle: 'Groups',
|
|
iterator: 'group',
|
|
|
|
fields: {
|
|
},
|
|
|
|
actions: {
|
|
},
|
|
|
|
fieldActions: {
|
|
}
|
|
|
|
}); //InventoryGroupsForm
|