Schema Information
Table name: namespaces
id :integer not null, primary key name :string(255) not null path :string(255) not null owner_id :integer not null created_at :datetime not null updated_at :datetime not null type :string(255)
Methods
    
  
  
  
    
    
    
    
    
        
      Instance Public methods
      
        
            
              add_users_to_project_teams(user_ids, project_access)
            
            Link
          
          
          
            Source: show
# File app/models/group.rb, line 15 def add_users_to_project_teams(user_ids, project_access) UsersProject.add_users_into_projects( projects.map(&:id), user_ids, project_access ) end