mirror of
https://github.com/ansible/awx.git
synced 2026-05-03 23:55:28 -02:30
move credential to prompt-for mechanism
This commit is contained in:
9
awx/main/migrations/_ask_for_variables.py
Normal file
9
awx/main/migrations/_ask_for_variables.py
Normal file
@@ -0,0 +1,9 @@
|
||||
def migrate_credential(apps, schema_editor):
|
||||
'''If credential is not currently present, set ask_for_credential_on_launch
|
||||
equal to True, and otherwise leave it as the default False value.
|
||||
'''
|
||||
JobTemplate = apps.get_model('main', 'JobTemplate')
|
||||
for jt in JobTemplate.objects.iterator():
|
||||
if jt.credential is None:
|
||||
jt.ask_credential_on_launch = True
|
||||
jt.save()
|
||||
Reference in New Issue
Block a user