search for: add_messag

Displaying 1 result from an estimated 1 matches for "add_messag".

Did you mean: add_message
2006 Mar 10
0
Design question
...els: users, messages and permissions. Certain users can see certain messages that are left, thanks to the permissions table (which simply links user_id to message_id). I currently have three controllers: Login: login, logout, add_user (etc) Messages: for the users Admin: for the administrator, add_message, edit_message (etc) Maybe the user functions should be moved into the AdminController? Maybe I''m way off here? It seems that controllers should lump together groups of functionality, but they could end up huge. In the future I might add groups (which will require add_group, adding u...