-
Notifications
You must be signed in to change notification settings - Fork 26
Bita and Alex #21
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?
Bita and Alex #21
Conversation
…eoStoreAPI into last-branch-ever
…eoStoreAPI into last-branch-ever
Video StoreWhat We're Looking For
|
| def check_out | ||
| rental = Rental.new(rental_params) | ||
|
|
||
| if rental.movie.available_inventory > 0 |
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: [:title, :overview, :release_date, :inventory, :available_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.