fluke/devops-service/db/mongo/models/stack/stack_openstack.rb
2015-07-21 19:20:02 +04:00

12 lines
221 B
Ruby

module Devops
module Model
class StackOpenstack < StackBase
self.provider = 'openstack'
def stack_status
details[:stack_status] || details['stack_status'] if details
end
end
end
end