forked from saurabh/orbit4-5
16 lines
212 B
Ruby
16 lines
212 B
Ruby
|
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
|