1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-26 07:55:24 +03:00

Remove NATURAL_KEY and change to dependant nonexport

This commit is contained in:
neevnuv 2024-02-27 16:25:29 +00:00 committed by Neev Geffen
parent 14f02f3979
commit be8d7819b8
2 changed files with 1 additions and 2 deletions

View File

@ -48,7 +48,6 @@ DEPENDENT_EXPORT = [
('Inventory', 'Host'),
('Inventory', 'Label'),
('WorkflowJobTemplateNode', 'WorkflowApprovalTemplate'),
('Credential', 'CredentialInputSource'),
]
@ -63,6 +62,7 @@ DEPENDENT_NONEXPORT = [
('Group', 'potential_children'),
('Host', 'all_groups'),
('WorkflowJobTemplateNode', 'create_approval_template'),
('Credential', 'CredentialInputSource'),
]

View File

@ -4,7 +4,6 @@ from . import page
class CredentialInputSource(base.Base):
NATURAL_KEY = ('input_field_name')
pass