I have an activeadmin resource which has a belongs_to :user relationship.
When I create a new Instance of the model in active admin, I want to associate the currently lo
Another option:
def create params[:item].merge!({ user_id: current_curator.id }) create! end