removed indexes from forms that included lists

This commit is contained in:
John Mitchell
2015-01-09 15:11:26 -05:00
parent c12006753e
commit d84626063f
4 changed files with 14 additions and 1 deletions

View File

@@ -68,6 +68,7 @@ angular.module('OrganizationFormDefinition', [])
type: 'collection', type: 'collection',
title: 'Users', title: 'Users',
iterator: 'user', iterator: 'user',
index: false,
open: false, open: false,
actions: { actions: {
@@ -114,6 +115,7 @@ angular.module('OrganizationFormDefinition', [])
type: 'collection', type: 'collection',
title: 'Administrators', title: 'Administrators',
iterator: 'admin', // Singular form of name (e.g. thing) iterator: 'admin', // Singular form of name (e.g. thing)
index: false,
open: false, // Open accordion on load? open: false, // Open accordion on load?
base: '/users', base: '/users',
actions: { // Actions displayed top right of list actions: { // Actions displayed top right of list

View File

@@ -257,6 +257,7 @@ angular.module('ProjectFormDefinition', ['SchedulesListDefinition'])
type: 'collection', type: 'collection',
title: 'Organizations', title: 'Organizations',
iterator: 'organization', iterator: 'organization',
index: false,
open: false, open: false,
actions: { actions: {
@@ -297,7 +298,8 @@ angular.module('ProjectFormDefinition', ['SchedulesListDefinition'])
}, },
schedules: { schedules: {
include: "SchedulesList" include: "SchedulesList",
index: false
} }
}, },

View File

@@ -80,6 +80,7 @@ angular.module('TeamFormDefinition', [])
title: 'Credentials', title: 'Credentials',
iterator: 'credential', iterator: 'credential',
open: false, open: false,
index: false,
actions: { actions: {
add: { add: {
@@ -123,6 +124,7 @@ angular.module('TeamFormDefinition', [])
title: 'Permissions', title: 'Permissions',
iterator: 'permission', iterator: 'permission',
open: false, open: false,
index: false,
actions: { actions: {
add: { add: {
@@ -183,6 +185,7 @@ angular.module('TeamFormDefinition', [])
title: 'Projects', title: 'Projects',
iterator: 'project', iterator: 'project',
open: false, open: false,
index: false,
actions: { actions: {
add: { add: {
@@ -225,6 +228,7 @@ angular.module('TeamFormDefinition', [])
title: 'Users', title: 'Users',
iterator: 'user', iterator: 'user',
open: false, open: false,
index: false,
actions: { actions: {
add: { add: {

View File

@@ -132,6 +132,7 @@ angular.module('UserFormDefinition', [])
title: 'Credentials', title: 'Credentials',
iterator: 'credential', iterator: 'credential',
open: false, open: false,
index: false,
actions: { actions: {
add: { add: {
@@ -175,6 +176,7 @@ angular.module('UserFormDefinition', [])
title: 'Permissions', title: 'Permissions',
iterator: 'permission', iterator: 'permission',
open: false, open: false,
index: false,
actions: { actions: {
add: { add: {
@@ -236,6 +238,7 @@ angular.module('UserFormDefinition', [])
title: 'Admin of Organizations', title: 'Admin of Organizations',
iterator: 'adminof', // Singular form of name (e.g. thing) iterator: 'adminof', // Singular form of name (e.g. thing)
open: false, // Open accordion on load? open: false, // Open accordion on load?
index: false,
base: '/organizations', base: '/organizations',
actions: {}, actions: {},
@@ -255,6 +258,7 @@ angular.module('UserFormDefinition', [])
type: 'collection', type: 'collection',
title: 'Organizations', title: 'Organizations',
iterator: 'organization', iterator: 'organization',
index: false,
open: false, open: false,
actions: {}, actions: {},
@@ -275,6 +279,7 @@ angular.module('UserFormDefinition', [])
title: 'Teams', title: 'Teams',
iterator: 'team', iterator: 'team',
open: false, open: false,
index: false,
actions: {}, actions: {},