Sha256: dc2d03f6dfc48c0f2ffb981276882ac04f02b6d9f7cb03e3a68c12dafdaebded
Contents?: true
Size: 768 Bytes
Versions: 40
Compression:
Stored size: 768 Bytes
Contents
# frozen_string_literal: true # TODO: mover a pg_scaffold module PgEngine class Configuracion attr_accessor :sistema_iconos, :clase_botones_chicos, :boton_destroy, :boton_edit, :boton_show, :boton_light, :icono_destroy, :icono_edit, :icono_show, :boton_export, :bootstrap_version, :current_user_method def initialize @sistema_iconos = 'bi' @clase_botones_chicos = 'btn-sm' @boton_destroy = 'light' @boton_export = 'warning' @boton_edit = 'light' @boton_show = 'light' @boton_light = 'light' @icono_destroy = 'trash-fill' @icono_edit = 'pencil' @icono_show = 'eye-fill' @bootstrap_version = 5 @current_user_method = :current_user end end end
Version data entries
40 entries across 40 versions & 1 rubygems