-
Notifications
You must be signed in to change notification settings - Fork 26
Karla & Elise #12
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
base: master
Are you sure you want to change the base?
Karla & Elise #12
Conversation
Wrote index customer controller action and tests
Elise list all movies
Kg/show movie
Elise validating date format
passed tests for create movie action
Kg movie validation tests
Rental checkout
Passed all rental tests and smoke tests
Video StoreWhat We're Looking For
|
| customer = Customer.find_by(id: rental.customer_id) | ||
| customer.rental_ids << rental.id | ||
| checkouts = customer.movies_checked_out_count | ||
| checkouts += 1 |
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.
You have a bunch of business logic here! Would it be possible to encapsulate this in a model method? Something like
rental.check_out(customer_id, movie_id)
might be a good interface. That would make this logic easier to test as well.
| def show | ||
| movie = Movie.find_by(id: params[:id]) | ||
| if movie | ||
| render json: movie.as_json(only: [:id, :title, :release_date, :overview, :available_inventory, :inventory]), status: :ok |
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.
Small style note: not all text editors wrap lines for you. This line is so long that on GitHub I have to scroll horizontally to see all the pieces. You can make this easier to read by putting a newline after any given comma in a statement.
Video Store API
Congratulations! You're submitting your assignment!
If you didn't get to the functionality the question is asking about, reply with what you would have done if you had completed it.
Comprehension Questions
POST /rentals/check-inendpoint? What does the time complexity depend on? Explain your reasoning.