Commit 2bbf7669 authored by John E. Vincent's avatar John E. Vincent

services were not sending created_at in #to_hash

parent c03a98d2
......@@ -21,7 +21,7 @@ module Noah
def to_hash
Host[host_id].nil? ? host_name=nil : host_name=Host[host_id].name
super.merge(:name => name, :status => status, :updated_at => updated_at, :host => host_name)
super.merge(:name => name, :status => status, :updated_at => updated_at, :created_at => created_at, :host => host_name)
end
class << self
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment