Guest User

Untitled

a guest
Mar 23rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. class Post < ApplicationRecord
  2. has_one_attached :image
  3. end
  4.  
  5. def post_params
  6. params.require(:post).permit(:title, :content, :image)
  7. end
  8.  
  9. <div class="field">
  10. <%= form.label :image %>
  11. <%= form.file_field :image %>
  12. </div>
Add Comment
Please, Sign In to add comment