1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

#8366: name scheduled_time to scheduled for consistency with other fields

This commit is contained in:
jeremystretch
2022-11-15 13:37:13 -05:00
parent 23c0ca456f
commit 87727c71f7
11 changed files with 27 additions and 23 deletions

View File

@@ -385,7 +385,8 @@ class JobResultSerializer(BaseModelSerializer):
class Meta:
model = JobResult
fields = [
'id', 'url', 'display', 'created', 'completed', 'scheduled_time', 'name', 'obj_type', 'status', 'user', 'data', 'job_id',
'id', 'url', 'display', 'status', 'created', 'scheduled', 'completed', 'name', 'obj_type', 'user', 'data',
'job_id',
]