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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T23:09:06+00:00 2026-06-12T23:09:06+00:00

I use Mongoid and Rails 3, and I have the following single table inheritance:

  • 0

I use Mongoid and Rails 3, and I have the following single table inheritance:

class Post
  include Mongoid::Document
  field :title, type: String
  field :content, type: String
end

There is one model ‘Article’ inherited from Post:

class Article < Post
  field :source, type: String
end

I am a novice to try STI. I learned that ‘one controller’ is a good design for base and inherited models. So I have the PostsController like this

class PostsController < ApplicationController
  def index
    @type = param[:type]  # type is passed from the route.rb
    @posts = Post.where(_type: @type)

    ...

So if @type is specified as ‘Article’, @posts will only contain the ‘Article’ type of posts. This work well in the articles view: only articles will be displayed, but not other kind of posts.

However, in the posts view, it will show both posts and articles.

I don’t want articles showing in my posts view — actually, I want only posts from the base model showing in the view. Is there a way to exclude items from inherited model in the base controller?

In other words, how can I find items only from the base model?

  • 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-06-12T23:09:08+00:00Added an answer on June 12, 2026 at 11:09 pm

    I just figured out I can use the following in the controller:

    @post = Post.where(_type: "Post")
    

    Is it the right way to go?

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

Sidebar

Related Questions

There are two classes: class Person include Mongoid::Document field :name embeds_many :addresses end class
I have a class that looks like this: class SearchService include Mongoid::Document key :name,
I've been trying to use Mongoid with Rails on Ubuntu. I have installed mongoDB
2 models: Class User include Mongoid::Document has_many :reports end Class Report include Mongoid::Document belongs_to
I have some problem with this mongoid. It's my first time to use mongoDB,
I'm in the process of converting my Rails app to use mongodb through mongoid.
I'm trying to use the Mongoid / Devise Rails 3.1 template ( Mongoid and
i use rails and mongodb (mongoid gem). i need to create a select form
I am using mongoid 3 in a rails 3 application. I have a client
i'm trying to use Mongoid with rails 3.2.2, i've added: gem mongoid, ~> 2.4

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.