Skip to content

Instantly share code, notes, and snippets.

@huhn511
Last active December 15, 2018 14:46
Show Gist options
  • Save huhn511/f584df1c5c9f27408e19f920cc9eed5e to your computer and use it in GitHub Desktop.
Save huhn511/f584df1c5c9f27408e19f920cc9eed5e to your computer and use it in GitHub Desktop.
<div class="field">
<%= form.label :image %>
<%= form.file_field :image %>
</div>
def model_params
params.require(:model).permit(:image, ...)
end
<%= image_tag @model.image %>
class Model < ApplicationRecord
has_one_attached :image
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment