Click here to Skip to main content
15,879,535 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have made has_many through association on User, Prog and Enrollment. To be able to add Prog to User I did something like:

enrollments#create
def create
@prog = Prog.find(params[:id})
@enrollment = Enrollment.create(user_id: current_user.id, prog_id: @prog.id)
redirect_to @prog
end

Now I would like to destroy association...
In this case User would like to add many Progs, however it"s up to Prog either to decline request from User or not. The problem I face is that Prog somehow should be able to decline every request it has. Question is how to make enrollment#destroy understand that Prog should decline every request no matter of current signed in user?
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900