April 2018
Beginner to intermediate
406 pages
9h 33m
English
We have almost everything in place, except for the final code necessary to get our image uploads into the context. We've started the work in the create_poll_with_options/3 function of lib/vocial/votes/votes.ex, but now we need to expand that work significantly and add to the function's signature. We'll want to pass in the image_data hash that we constructed as part of the modified template that included the caption and the alt_text for our image, and we'll also want to add a new line to our with statement that saves the uploaded file into the database! At the top of lib/vocial/votes/votes.ex, you'll want to add an alias statement for the image module:
alias Vocial.Votes.Image
Then we'll continue ...