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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T14:35:20+00:00 2026-05-21T14:35:20+00:00

I am trying to use a polymorphic comment model on the post model ,

  • 0

I am trying to use a polymorphic comment model on the post model , upload model, etc. Ordinarily i would have a @parent resource to scope one to the other in order for Rails to build the relationship. But because this a multi-tenant subdomain styled application, where all resources will also need to be scoped to the curent_account. I am struggling with how to scope @parent resource under the current_accout.

In ApplicationController I have a current_account method, a find_parent and a parent_collection method:

#Application_controller
class ApplicationController < ActionController::Base
  before_filter :current_account

  def current_account
    unless is_root_domain?
     @current_account ||= Account.find_by_subdomain(request.subdomains.first)
    end
  @current_account
  end

 def find_parent
   params.each do |name ,value|
    @parent = $1.pluralize.classify.constantize.find(value) if name =~ /(.*?)_id/
  return if @parent
  end
 end

 def parent_collection
   @parent_collection ||= current_account.send parent.pluralize
 end

end

#comments_controller with only @parent resource without reference to current_account
class CommentsController < ApplicationController
  before_filter :find_parent

  def new
    @comment = @parent.comments.build
  end

  def create
   @comment = @parent.comments.build(params[:comment])
   .....
   .....
  end
end

#comments_controller using only current_account resource without reference to @parent
class CommentsController < ApplicationController
  before_filter :current_account

  def new
    @comment = current_account.comments.build
  end

  def create
    @comment = current_account.comments.build(params[:comment])
    .....
    .....
  end
end

Any guide on how to call current_accout in the controllers in a way that @parent is scoped to it and is there a need for the parent_collection method that i put in the applications_controller. Thanks

  • 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-21T14:35:20+00:00Added an answer on May 21, 2026 at 2:35 pm

    Let’s make an assumption that your @parent resource is a Post model. Then I would imagine that:
    a) your Account model has_many :posts
    b) your Post model belongs_to :account
    c) your Post model has_many :comments, :as => :commentable
    c) your Comment model belongs_to :commentable, :polymorphic => true

    So with that in mind you should be able to build scopes like this:

    @parent.where(:account_id => current_account.id).comments
    

    You can also refactor it to the commentable model:

    def Post < ActiveRecord::Base
      scope :by_account, lambda { |account_id| where(:account_id => account_id) }
    end
    

    and the use it in the controller like this:

    @parent.by_account(current_account.id).comments
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Trying to use a guid as a resource id in a rest url but
While trying to use LINQ to SQL I encountered several problems. I have table
I've been trying to use polymorphic query with JPA (hibernate as provider) in the
We're trying to use Jackson 1.5 to take advantage of some of the polymorphic
Trying to use an excpetion class which could provide location reference for XML parsing,
I' trying to use a Linq query to find and set the selected value
I trying to use ImageInfo and Jython to get information from a image on
I'm trying to use svnmerge.py to merge some files. Under the hood it uses
I've been trying to use SQLite with the PDO wrapper in PHP with mixed
I'm trying to use SQLBindParameter to prepare my driver for input via SQLPutData .

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.