Hi everyone,
I am trying to strictly adhere to REST and I have a few code organization questions.
My database tables are as follows:
USERS GROUPS GROUP_USERS EVENTS EVENT_USERS
The relationships are as follows:
GROUPS have many USERS and USERS have many GROUPS. EVENTS have many USERS and USERS have many EVENTS.
So, right now, I have a controller for users, groups and events. I got to the point where I want to have USERS add themselves to a GROUP and/or an EVENT. Before I add methods to the group or event controller specifically that are called something like add_user, delete_user, edit_user ... I want to get everyones take on my problem.