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."""