mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 20:36:39 +08:00
9 lines
178 B
Ruby
9 lines
178 B
Ruby
module AgeWords
|
|
|
|
def self.age_words(secs)
|
|
return "—" if secs.blank?
|
|
return FreedomPatches::Rails4.distance_of_time_in_words(Time.now, Time.now + secs)
|
|
end
|
|
|
|
end
|