Sha256: 8e63637e394f318a98b0d390030cb43a9e78a2f0548e88a23fbf4a27491e7a5a
Contents?: true
Size: 622 Bytes
Versions: 96
Compression:
Stored size: 622 Bytes
Contents
module ActiveScaffold::Config class Refresh < Base self.crud_type = :read def initialize(core_config) @core = core_config # start with the ActionLink defined globally @link = self.class.link.clone end # global level configuration # -------------------------- # the ActionLink for this action cattr_reader :link @@link = ActiveScaffold::DataStructures::ActionLink.new('refresh', :label => :refresh, :type => :table, :inline => true, :position => false, :security_method => :refresh_authorized?) # the ActionLink for this action attr_accessor :link end end
Version data entries
96 entries across 96 versions & 1 rubygems