Add methods to get a bug's author details from the first comment
This commit is contained in:
parent
882700c5c8
commit
f77a3c75be
6 changed files with 32 additions and 16 deletions
|
@ -46,4 +46,20 @@ class MapBug < ActiveRecord::Base
|
|||
def visible
|
||||
return status != "hidden"
|
||||
end
|
||||
|
||||
def author
|
||||
self.comments.first.author
|
||||
end
|
||||
|
||||
def author_ip
|
||||
self.comments.first.author_ip
|
||||
end
|
||||
|
||||
def author_id
|
||||
self.comments.first.author_id
|
||||
end
|
||||
|
||||
def author_name
|
||||
self.comments.first.author_name
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue