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 3276114
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T19:13:18+00:00 2026-05-17T19:13:18+00:00

I have a need in my app to allow users to bookmark a post.

  • 0

I have a need in my app to allow users to bookmark a post. They should only be able to create one bookmark per post. I’ve set up my polymorphic association like so:

class Post < ActiveRecord::Base
  has_many :bookmarks, :as => :bookmarkable
end

class Bookmark < ActiveRecord::Base
  belongs_to :bookmarkable, :polymorphic => true
  belongs_to :user
end

class User < ActiveRecord:Base
  has_many :posts
  has_many :bookmarks
end

In my view, a user can create a bookmark. I would like to find some way to replace the “Create Bookmark” view code with “Delete Bookmark” code, if the user has already bookmarked a particular post.

If I try to do something like this:

@post = Post.find(params[:id, :include => [:bookmarks]])
- if @post.bookmarks.users.include?(@user)

I get a No Method error for “users”

How can I access owners of the bookmarks, to determine if the current user has already bookmarked a page?

Thank you.

  • 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-17T19:13:18+00:00Added an answer on May 17, 2026 at 7:13 pm

    I would approach this from the user’s point of view:

    class User < ActiveRecord::Base
      has_many :posts
      has_many :bookmarks
    
      # Rails 3
      def bookmarked?(post)
        bookmarks.where(
          {
            :bookmarkable_id => post.id, :bookmarkable_type => post.class.name
          }
        ).count > 0
      end
    
      # Rails 2
      def bookmarked?(post)
        bookmarks.find(:all, :conditions => 
          {
            :bookmarkable_id => post.id, :bookmarkable_type => post.class.name
          }
        ).count > 0
      end
    end
    
    if @user.bookmarked?(@post)
      # Show delete link
    else
      # Show bookmark link
    end
    

    I would also advice you to add a validation to your bookmarks model that prevents a user from bookmarking the same post twice.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a need to be able to allow users to export their .doc
I am working on a ASP.NET app and i have a need to post
We are using SVG in our web app and we need to allow users
Well behaved windows programs need to allow users to save their work when they
Assume I have a CI app that does the following: Allow users to log
I've got a VB.NET WinForms app in which I have the need to refer
I have a LAMP (PHP) web app which need to interface with programs on
I have a Rails app that I need to deploy. Here are the facts:
I have a third-party app that creates HTML-based reports that I need to display.
I have Windows Vista MCML app, and I need to figure out the current

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.