-
Notifications
You must be signed in to change notification settings - Fork 13
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
Store Movies/Series #22
Comments
If we are implementing creation of Movie/Series/Episode objects in a single function, how can we identify the object as Movie/Series/Episode and add to the corresponding table in db. Is the only way to compare object structure or is there something else that am missing? |
I am sorry, since I have written these tasks quite some time ago, I need to get back into the mindset of one year ago. The creation function (#21) is a single function because it gets its input from the filesystem. In the filesystem we only have the The result is then fed into this store function (#22). Since there is a I guess we need to first implement the dependencies to work on this issue. There is a suggested PR for #19 I will look into. Let me know if that was too complicated, I am sure I can explain it differently. I will answer your initial question, though I don't think we will need to identify the objects since the objects We could have identified the objects either
|
Here we have different collections for series and movies. That's why i thought we might have to identify objects. Anyways I'll try to work on this considering your suggestions. |
Write a function that consumes the result of Create Movie/Series/Episode objects (#21) and stores it correctly to the data store.
The text was updated successfully, but these errors were encountered: