-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
Setting modification to address requests from UI_NEXT devs #14996
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,6 +92,7 @@ | |
), | ||
category=_('System'), | ||
category_slug='system', | ||
required=False, | ||
) | ||
|
||
register( | ||
|
@@ -774,6 +775,7 @@ | |
allow_null=True, | ||
category=_('System'), | ||
category_slug='system', | ||
required=False, | ||
) | ||
register( | ||
'AUTOMATION_ANALYTICS_LAST_ENTRIES', | ||
|
@@ -815,6 +817,7 @@ | |
help_text=_('Max jobs to allow bulk jobs to launch'), | ||
category=_('Bulk Actions'), | ||
category_slug='bulk', | ||
hidden=True, | ||
) | ||
|
||
register( | ||
|
@@ -825,6 +828,7 @@ | |
help_text=_('Max number of hosts to allow to be created in a single bulk action'), | ||
category=_('Bulk Actions'), | ||
category_slug='bulk', | ||
hidden=True, | ||
) | ||
|
||
register( | ||
|
@@ -835,6 +839,7 @@ | |
help_text=_('Max number of hosts to allow to be deleted in a single bulk action'), | ||
category=_('Bulk Actions'), | ||
category_slug='bulk', | ||
hidden=True, | ||
) | ||
|
||
register( | ||
|
@@ -845,6 +850,7 @@ | |
help_text=_('Enable preview of new user interface.'), | ||
category=_('System'), | ||
category_slug='system', | ||
hidden=True, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The one thing I'm not getting from this is how this list of settings to hide came about. Will this just lead to complaints that we hid these? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this field only gets read by UI_NEXT on UI_NEXT itself we don't need to show enabling UI_NEXT |
||
) | ||
|
||
register( | ||
|
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.
why are these other settings being hidden?
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.
they are not being shown on the UI anyway, and currently its hard coded for the UI to not show these settings
UI_NEXT want this to be dynamic and be determined by the API response