-
Notifications
You must be signed in to change notification settings - Fork 9
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
Multi speaker support #255
Merged
jandd
merged 11 commits into
devdaydresden:development
from
jandd:multi-speaker-support
Mar 12, 2020
Merged
Multi speaker support #255
jandd
merged 11 commits into
devdaydresden:development
from
jandd:multi-speaker-support
Mar 12, 2020
+942
−295
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Refactor Talk model to use ManyToMany fields for draft speakers and published speakers. Add data migration to migrate existing speaker data into the new structure. Adapt model, admin and form classes. Start fixing api_views, views and tests.
Alpine seem to have dropped openssl from its base image. This leads to runtime problems with the Psycopg2 PostgreSQL client library.
Implement code to remove unpublished talks of deleted speakers. Add tests for the signal handlers in talk.models.
jandd
requested review from
drombo,
jenslauterbach,
stefanbethke and
ronnyfriedland
March 11, 2020 23:48
jenslauterbach
approved these changes
Mar 12, 2020
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.
Hard to tell if all of the changes are correct, but looks good to me. I added two comments that have optional "changes".
Massive PR. Well done! Thank you. |
@jenslauterbach thanks for the review |
Pull Request Test Coverage Report for Build 660
💛 - Coveralls |
jandd
added a commit
to jandd/devday_website
that referenced
this pull request
Mar 12, 2020
The change in devdaydresden#255 introduced a regression on the speaker profile page (AttributeError in prefetch_related) that is fixed by this commit. A test to reproduce the error is included. addresses devdaydresden#251
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I implemented support for multiple speakers (addresses #251). The current implementation allows adding additional speakers in the admin interface. It does not implement user facing functionality to add additional speakers yet.
Addresses #237 for YouTube URLs for talk media.