Sha256: d0f2973a700f6af9903b9fff830560d7a431f830d9c915d280ea5322678eb59d
Contents?: true
Size: 513 Bytes
Versions: 24
Compression:
Stored size: 513 Bytes
Contents
# frozen_string_literal: true # generado con pg_rails module Admin class AccountsController < AdminController include PgEngine::Resource self.clase_modelo = Account private def atributos_permitidos %i[plan nombre domain subdomain] end def atributos_para_buscar atributos_permitidos end def atributos_para_listar %i[plan nombre domain subdomain owner] end def atributos_para_mostrar %i[plan nombre domain subdomain owner] end end end
Version data entries
24 entries across 24 versions & 1 rubygems