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 def self.account_fields ProviderAccount::ACCOUNT_FIELDS end end end end