소스 검색

Fixed to short title.

master
Nils Dittberner 9 년 전
부모
커밋
39326bec2d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      app/models/product.rb

+ 1
- 1
app/models/product.rb 파일 보기

@@ -5,7 +5,7 @@ class Product < ApplicationRecord

validates :title, :description, :image_url, :price, presence: true
validates :price, numericality: {greater_than_or_equal_to: 0.01}
validates :title, uniqueness: true, length: { minimum: 5, maximum: 30 }
validates :title, uniqueness: true, length: { minimum: 5, maximum: 60 }
validates :image_url, allow_blank: true, format: {
with: %r{\.(gif|jpg|png)\Z}i,
message: 'must be URL for GIF, JPG or PNG image.'


불러오는 중...
취소
저장