fluke/devops-service/db/mongo/models/stack/stack_openstack.rb
2015-07-15 19:37:27 +04:00

12 lines
194 B
Ruby

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