This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
|
class Comment < ActiveRecord::Base
|
|
belongs_to :page
|
|
belongs_to :author
|
|
|
|
def name
|
|
if self.author
|
|
self.author.name
|
|
else
|
|
self.user
|
|
end
|
|
end
|
|
end |