fluke/devops-service/db/mongo/models/stack/stack_openstack.rb
2015-08-04 12:40:08 +03:00

16 lines
283 B
Ruby

module Devops
module Model
class StackOpenstack < StackBase
def initialize attr={}
self.provider = 'openstack'
super(attr)
end
def stack_status
details[:stack_status] || details['stack_status'] if details
end
end
end
end