fluke/devops-service/db/mongo/models/stack/stack_openstack.rb
2015-08-05 16:06:29 +03:00

20 lines
338 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
def self.provider
'openstack'
end
end
end
end