I have a model that I'd like to allow creation of from 2 other models
so I tried by simply having 2 auto_actions_for in my model. This
doesn't work though - only the first is rendered.
Is there any way i can make this work?
class RecognitionInstancesController < ApplicationController
hobo_model_controller
auto_actions :all, :except => :index
auto_actions_for :recognition, [:create]
auto_actions_for :people, [:create]
end
Thanks,
Drammy