Skip to content

Commit ab99478

Browse files
committed
Fixed a bug in the resource description for SchedulingEvent that prevented it from being accessed under /api/v1/meeting/schedulingevent/.
- Legacy-Id: 17303
1 parent d902aa0 commit ab99478

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/meeting/resources.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright The IETF Trust 2014-2019, All Rights Reserved
1+
# Copyright The IETF Trust 2014-2020, All Rights Reserved
22
# -*- coding: utf-8 -*-
33
# Autogenerated by the mkresources management command 2014-11-13 23:15
44

@@ -208,7 +208,7 @@ class Meta:
208208
class SchedulingEventResource(ModelResource):
209209
session = ToOneField(SessionResource, 'session')
210210
status = ToOneField(SessionStatusNameResource, 'status')
211-
by = ToOneField(PersonResource, 'location')
211+
by = ToOneField(PersonResource, 'by')
212212
class Meta:
213213
cache = SimpleCache()
214214
queryset = SchedulingEvent.objects.all()

0 commit comments

Comments
 (0)