Sha256: 4a1257edb8971b651157301b101d5070e9be2eb034ffe041b7519b73e4e10af5
Contents?: true
Size: 594 Bytes
Versions: 14
Compression:
Stored size: 594 Bytes
Contents
module ActiveScaffold::Config class Show < Base self.crud_type = :read # global level configuration # -------------------------- cattr_accessor :link @@link = ActiveScaffold::DataStructures::ActionLink.new('show', :label => :show, :type => :member, :security_method => :show_authorized?, :ignore_method => :show_ignore?) # instance-level configuration # ---------------------------- # the ActionLink for this action attr_accessor :link # the label for this action. used for the header. attr_writer :label columns_accessor :columns end end
Version data entries
14 entries across 14 versions & 1 rubygems