require "db/mongo/models/provider_accounts/provider_account" module Devops module Model class StaticProviderAccount < ProviderAccount def self.build_from_bson a a["account_name"] = a["_id"] StaticProviderAccount.new a end end end end