7 lines
119 B
Ruby
7 lines
119 B
Ruby
|
class Profile < ActiveRecord::Base
|
||
|
extend FriendlyId
|
||
|
|
||
|
friendly_id :username, use: :slugged
|
||
|
is_impressionable
|
||
|
end
|