-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add new configuration setup forms #6201
base: production
Are you sure you want to change the base?
Conversation
tables.Institution, | ||
'form', | ||
'edit', | ||
['name', 'code', 'isAccessionsGlobal', 'isSingleGeographyTree', 'isSecurityOn', 'isServerBased'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
isSecurityOn
and isServerBased
should probably be set automatically and not input by the user.
IsAccessionsGlobal
and IsSingleGeographyTree
will affect application behavior and absolutely impact the later generation of disciplines (each discipline would not get the choice to create a geography tree)
tables.Collection, | ||
'form', | ||
'edit', | ||
['collectionName', 'code', 'catalogNumFormatName'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CatalogNumFormatName
should let the user choose form a default list of formats
tables.SpecifyUser, | ||
'form', | ||
'edit', | ||
['name', 'password', 'agents'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Field captions are usually determined by the schema configuration, but in the case the user sees this upon a first run, the captions will just be verbatim the name (e.g. "IsAccessionsGlobal" rather than a user-assigned schema). How are we going to set the labels?
Fixes #2931
Checklist
self-explanatory (or properly documented)
Testing instructions
TODO