orbit4-5/app/models/concerns/slug.rb

16 lines
212 B
Ruby
Raw Normal View History

2014-04-01 07:10:21 +00:00
module Slug
extend ActiveSupport::Concern
def slug
if not respond_to? :title or title.empty?
id
else
I18n.locale
title.parameterize
end
end
def to_param
slug
end
end