Method: Bike::Workflow::SD#_get

Defined in:
lib/_workflow/_workflow.rb

#_get(arg) ⇒ Object



29
30
31
32
33
34
35
36
37
38
# File 'lib/_workflow/_workflow.rb', line 29

def _get(arg)
  if _hide? arg
    # hidden
  elsif arg[:action] == :create
    item_instance '_001'
    _get_by_tmpl({:action => :create, :conds => {:id => '_001'}}, my[:tmpl][:index])
  else
    super
  end
end