From 68ce94d078d539de43af2967bdb01825922da689 Mon Sep 17 00:00:00 2001 From: Marcos Prieto Date: Tue, 27 Aug 2024 10:59:17 +0200 Subject: [PATCH] Model change to add LMSCourse.lti_context_memberships_url --- lms/models/lms_course.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lms/models/lms_course.py b/lms/models/lms_course.py index ae5b530c58..750185ac3b 100644 --- a/lms/models/lms_course.py +++ b/lms/models/lms_course.py @@ -37,6 +37,9 @@ class LMSCourse(CreatedUpdatedMixin, Base): name: Mapped[str] = mapped_column(index=True) + lti_context_memberships_url: Mapped[str | None] = mapped_column() + """URL for the Names and Roles endpoint, stored during launch to use it outside the launch context.""" + class LMSCourseApplicationInstance(CreatedUpdatedMixin, Base): """Record of on which installs (application instances) we have seen one course."""