소스 검색

Validate title, lat, lon on posts

master
Adrian Short 11 년 전
부모
커밋
3e825fd013
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. +3
    -0
      app/models/post.rb

+ 3
- 0
app/models/post.rb 파일 보기

@@ -1,5 +1,8 @@
class Post < ActiveRecord::Base
belongs_to :feed
validates :title, :presence => true
validates :lat, :numericality => { :greater_than_or_equal_to => -90, :less_than_or_equal_to => 90 }
validates :lon, :numericality => { :greater_than_or_equal_to => -180, :less_than_or_equal_to => 180 }
EARTH_RADIUS_METRES = 6378000


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