Coder Social home page Coder Social logo

Adding users to groups about groupify HOT 3 OPEN

dwbutler avatar dwbutler commented on June 14, 2024
Adding users to groups

from groupify.

Comments (3)

dwbutler avatar dwbutler commented on June 14, 2024

The readme has plenty of examples. If you can post a code sample I can probably tell you what's wrong with it.

from groupify.

zaheenzkhan avatar zaheenzkhan commented on June 14, 2024
class User < ApplicationRecord

     devise :database_authenticatable, :registerable,
     :recoverable, :rememberable, :trackable, :validatable


    groupify :group_member
    groupify :named_group_member

    validates :email, :presence => true, :uniqueness => true
    has_many :members
    has_many :groups, through: :member
end

class Group < ApplicationRecord
    groupify :group, members: [:users, :assignments], default_members: :users

    has_many :members
    has_many :groups, through: :member
end

class Member < ApplicationRecord
    belongs_to :group
    belongs_to :user
end

class Membership < ApplicationRecord
    groupify :group_membership
end

These are all the models i have created. I can create new users and groups but i cant add users to groups, neither through groupify or the has_many & through association (you can see i tried both). Also i cannot populate the member or the Membership(groupify) tables. need help

What are the commands that i should be using?

from groupify.

dwbutler avatar dwbutler commented on June 14, 2024

If you're defining your own associations that override groupify's, that could be problematic.

Some basic troubleshooting steps:

  • Have you run the migrations? rake db:migrate
  • Does your rails log (in logs/development.log) have any error messages?
  • What code are you actually running to try to add users to groups?

from groupify.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.