Slide 14
Slide 14 text
謎の継承CONTROLLER(2)
• あるページに表示するタ
ブの中身
• 対応するControllerとか
の情報がなぜか別の
Controllerのメソッドに
• 何やってるのかわからん
• 本当に読めない
• 本当に読めない(2回
言った)
def tab_stores
{
:label => ‘お店',
:component => {
:controller => '/view/details/city/stores`,
:action => 'index',
:id => @city.id
},
:index => -@city.stores.count(:conditions => ["deleted_at IS NULL"])
}
end
def tab_parks
{
:label => ‘公園',
:component => {
:controller => '/view/details/city/parks',
:action => 'index',
:id => @city.id
},
:index => -@city.parks.count(:conditions => ["deleted_at IS NULL"])
}
end