RABL API を使用してカスタム コレクションを構築しようとしています。idea_actions の配列を持つ Idea モデルがあります。RABL を使用してアイデア アクションのカスタム コレクションを追加する必要がありますが、現在のアクションを認識する必要があるため、child :idea_actions を使用できないようです。エラーの下のコード...どうすればカスタムコレクションを取得できますか?
object @idea
attributes *Idea.column_names
# need access to current action
node :idea_actions do
@idea.idea_actions.each do |action|
{ :id => action.id}
{ :custom_stuff => action.some_method } if action.something?
end
end
# can't do that...
# child :idea_actions