Group:
Creator
Admins
Members
Playlists
Each of the creator/admin/member are Users. I need to be able to call these from each user:
User.mygroups (groups where i am the creator)
User.controlledgroups (groups where i am the admin)
User.joinedgroups (groups where i am a member)
How can I achieve this? I know that I can do something like this. How will it be from the User's side?
class Group < ActiveRecord::Base
has_one :creator, :class :user
has_many :admins, :class :user
has_many :memebers, :class :user
end
in User model
in Group model
Migration