fluke/devops-service/db/mongo/models/stack/stack_openstack.rb
2015-08-18 15:55:58 +03:00

22 lines
350 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
=begin
def self.provider
'openstack'
end
=end
end
end
end