mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-28 19:51:57 -04:00
Because our default timezone for the app is UTC, at certain times, some tests could fail outside of UTC. This commit fixes that by changing a single call to Time.now to Time.zone.now.
31 lines
770 B
Ruby
31 lines
770 B
Ruby
class Post < ActiveRecord::Base
|
|
extend FriendlyId
|
|
friendly_id :author_date_subject, use: :slugged
|
|
attr_accessible :body, :subject, :author_id, :forum_id
|
|
belongs_to :author, :class_name => 'Member'
|
|
belongs_to :forum
|
|
has_many :comments, :dependent => :destroy
|
|
default_scope order("created_at desc")
|
|
|
|
def author_date_subject
|
|
# slugs are created before created_at is set
|
|
time = created_at || Time.zone.now
|
|
"#{author.login_name} #{time.strftime("%Y%m%d")} #{subject}"
|
|
end
|
|
|
|
def comment_count
|
|
self.comments.count
|
|
end
|
|
|
|
def recent_activity
|
|
self.comments.last ? self.comments.last.created_at : self.created_at
|
|
end
|
|
|
|
def Post.recently_active
|
|
Post.all.sort do |a,b|
|
|
b.recent_activity <=> a.recent_activity
|
|
end
|
|
end
|
|
|
|
end
|