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