From ab994789135a9643c2b7d12960ad04d839a48318 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Mon, 17 Feb 2020 12:20:14 +0000 Subject: [PATCH] Fixed a bug in the resource description for SchedulingEvent that prevented it from being accessed under /api/v1/meeting/schedulingevent/. - Legacy-Id: 17303 --- ietf/meeting/resources.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/meeting/resources.py b/ietf/meeting/resources.py index aa4ff9a7b..a2b3779d2 100644 --- a/ietf/meeting/resources.py +++ b/ietf/meeting/resources.py @@ -1,4 +1,4 @@ -# Copyright The IETF Trust 2014-2019, All Rights Reserved +# Copyright The IETF Trust 2014-2020, All Rights Reserved # -*- coding: utf-8 -*- # Autogenerated by the mkresources management command 2014-11-13 23:15 @@ -208,7 +208,7 @@ from ietf.name.resources import SessionStatusNameResource class SchedulingEventResource(ModelResource): session = ToOneField(SessionResource, 'session') status = ToOneField(SessionStatusNameResource, 'status') - by = ToOneField(PersonResource, 'location') + by = ToOneField(PersonResource, 'by') class Meta: cache = SimpleCache() queryset = SchedulingEvent.objects.all()