Class: Comment

Inherits:
ActiveRecord::Base
  • Object
show all
Includes:
Rakismet::Model
Defined in:
app/models/comment.rb

Instance Method Summary collapse

Instance Method Details

#author_emailObject



13
14
15
# File 'app/models/comment.rb', line 13

def author_email
  author ? author.email : super
end

#author_nameObject



9
10
11
# File 'app/models/comment.rb', line 9

def author_name
  author ? author.fullname : super
end