-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes needed for Premiere CE OAuth Integration #52
Conversation
@@ -50,7 +50,7 @@ class CourseEntitlementSupportDetailSerializer(serializers.ModelSerializer): | |||
slug_field='username', | |||
default=serializers.CurrentUserDefault() | |||
) | |||
unenrolled_run = CourseKeyField('unenrolled_run.id') | |||
unenrolled_run = CourseKeyField(source='unenrolled_run.id') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unrelated to the goal of the pr, but this line was breaking my migrations locally.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this get @medality_custom
added to it for good measure?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good call. added.
@@ -50,7 +50,7 @@ class CourseEntitlementSupportDetailSerializer(serializers.ModelSerializer): | |||
slug_field='username', | |||
default=serializers.CurrentUserDefault() | |||
) | |||
unenrolled_run = CourseKeyField('unenrolled_run.id') | |||
unenrolled_run = CourseKeyField(source='unenrolled_run.id') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this get @medality_custom
added to it for good measure?
This PR does a few things: