Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7645981
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T10:05:19+00:00 2026-05-31T10:05:19+00:00

I am getting undefined method `member’ error in my following code Pls tell where

  • 0

I am getting undefined method `member’ error in my following code

Pls tell where am i going wrong in the following code…


I have groups model in which i have created member method as follows

def member(groupid,userid)
  @members = Membership.all
  @members.each do |m|
    if m.group_id == groupid and m.user_id == userid
      return true
    end
  end
end

in my groups_controller index action :

def index
  @group = Group.all
end

and inside my groups/index.html.haml i am calling this method at following line

- @group.reverse.each do |group|
            %tr
            %ul{:style=>"list-style-type:square"}
              %td
              %li= link_to group.groupname,group
              - if member(@group.id,@current_user.id)
                = link_to ' Join this group', {:controller => "memberships", 
                       :action => "create", 
                       :group_id => group.id},
                       :method => "post"    

but when i run code i get undefined method `member’ error

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T10:05:20+00:00Added an answer on May 31, 2026 at 10:05 am

    member is an instance method of Group. So you should change that line to

    - if group.member(@group.id, @current_user.id)
    

    But it doesn’t need to be instance method. It doesn’t use any state or anything. So, make it a class method.

    class Group
      def self.member(groupid,userid)
        @members = Membership.all
        @members.each do |m|
          if m.group_id == groupid and m.user_id == userid
            return true
          end
        end
      end
    end
    

    And call it like this:

    - if Group.member(@group.id, @current_user.id)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can someone tell me why I am getting undefined method print_hash() error? I have
I have a problem where a method is getting an undefined variable error, even
I am getting JQUERY undefined error. Do you have any idea (code below). <%@
Why am I getting an undefined label error in following code? (I am leaving
I'm getting the following error: undefined method `id' for #<Array:0x00000101ff0b70> On this line: <%=
I have this code and I keep getting undefined if I test the selectedIndex.
I am getting undefined method [] for true:TrueClass error while running the rake task
This is a many(proposaltracking)-to-one(partner) relationship. I am getting undefined method 'reference' for ProposalTracking:Class error
I am getting an undefined method 'has_content?' error on an rspec controller_spec file. I
I'm getting the error: undefined method `model_name' for NilClass:Class when trying to call the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.