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

Version Path
active_scaffold-3.4.43 lib/active_scaffold/config/show.rb
active_scaffold-3.4.42 lib/active_scaffold/config/show.rb
active_scaffold-3.4.41.1 lib/active_scaffold/config/show.rb
active_scaffold-3.4.41 lib/active_scaffold/config/show.rb
active_scaffold-3.4.40 lib/active_scaffold/config/show.rb
active_scaffold-3.4.39 lib/active_scaffold/config/show.rb
active_scaffold-3.4.38 lib/active_scaffold/config/show.rb
active_scaffold-3.4.37 lib/active_scaffold/config/show.rb
active_scaffold-3.4.36 lib/active_scaffold/config/show.rb
active_scaffold-3.4.35 lib/active_scaffold/config/show.rb
active_scaffold-3.4.34 lib/active_scaffold/config/show.rb
active_scaffold-3.4.33 lib/active_scaffold/config/show.rb
active_scaffold-3.4.32 lib/active_scaffold/config/show.rb
active_scaffold-3.4.31 lib/active_scaffold/config/show.rb