mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-28 13:31:06 +00:00
10 lines
205 B
Ruby
10 lines
205 B
Ruby
|
class Site < ActiveRecord::Base
|
||
|
belongs_to :article
|
||
|
attr_accessible :name
|
||
|
|
||
|
validates :name,
|
||
|
length: {in: 2..10},
|
||
|
uniqueness: true,
|
||
|
format: /\A[a-z\-]{2,10}\Z/
|
||
|
end
|