-
Notifications
You must be signed in to change notification settings - Fork 1
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
Add a validation rule for content_type pin.image #1
base: master
Are you sure you want to change the base?
Conversation
bachbui
commented
Feb 7, 2017
- Paperclip 4.0 requires a validation rule for file attachments
- Set this to accept common image types (jpg, png, gif)
- Paperclip 4.0 requires a validation rule for file attachments - Set this to accept common image types (jpg, png, gif)
@@ -9,7 +9,7 @@ gem 'coffee-rails', '~> 4.2' | |||
gem 'jquery-rails'# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks | |||
gem 'turbolinks', '~> 5' | |||
gem 'jbuilder', '~> 2.5' | |||
gem 'bootstrap-sass' | |||
gem 'bootstrap-sass', '~> 3.2.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.
This makes your code more portable, as you need bootstrap 3 to run it. On systems that have an older version installed, your app will see that bootstrap is already installed but then will hit errors when it runs.
@@ -1,4 +1,5 @@ | |||
class Pin < ActiveRecord::Base | |||
belongs_to :user | |||
has_attached_file :image, :styles => { :medium => "300x300>", :thumb => "100x100>" } | |||
validates_attachment_content_type :image, :content_type => ["image/jpg", "image/jpeg", "image/png", "image/gif"] |
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.
This is the validation rule which checks that the file being uploaded has one of the standard image content-types, so that someone would be prevented from uploaded a pdf for example. You'd probably want to add additional validation rules, like on the max file size, for example.
@@ -1,6 +1,7 @@ | |||
<p id="notice"><%= notice %></p> | |||
|
|||
<p> | |||
<%= link_to image_tag(@pin.image.url, class: 'media-object'), @pin.image.url, target: '_blank' %> |
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.
This is just to test that the image upload was working. You'd probably want to display a thumbnail version of the image instead what this is doing, which is showing the original.