ensl.org/app/models/custom_url.rb

10 lines
210 B
Ruby
Raw Normal View History

class CustomUrl < ActiveRecord::Base
2017-11-09 17:25:52 +00:00
belongs_to :article
attr_accessible :name
validates :name,
length: {in: 2..10},
uniqueness: true,
format: /\A[a-z\-]{2,10}\Z/
end