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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:55:52+00:00 2026-05-26T10:55:52+00:00

need some advice. I’m doing a project on RoR, and do not sure what

  • 0

need some advice.
I’m doing a project on RoR, and do not sure what relationship between the models should I use. I’ve got three models – Users, Boards and Messages.
The beginning is pretty simple:
User has one Wall, and it belongs to the User, so I guess this should be:

class User < ActiveRecord::Base
  has_one :board
end

class Board < ActiveRecord::Base
    belongs_to :user
end

The last model is Messages and here comes my problem. Message belongs to User cause he writes it, but it also belongs to a Wall cause he writes it on a wall (and it can be Wall that belongs to other user).

I used the simple solution:

class Theme < ActiveRecord::Base
    belongs_to :board
    belongs_to :user
end

class User < ActiveRecord::Base
      has_one :board
      has_many :themes
end

class Board < ActiveRecord::Base
      belongs_to :user
      has_many :themes
end

But I not satisfy with it, and feel that it isn’t perfect. I’m looking for a solution that will let me write thinks like:

user.themes.create(:board => @board)

(now it doesn’t fill user_id field)

I hope that isn’t a hard task for those who more experienced than me in Ruby on Rails model. I’ll appreciate good advices, 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-26T10:55:53+00:00Added an answer on May 26, 2026 at 10:55 am

    For normal you use some authentification gem like devise. Then you have the current_user variable which includes the object of the user that is currently calling the action.

    Then when a user creates the Topic you add one simple line to the controller to set the user:

    @theme.user = current_user
    

    You should also use a gem like cancan to manage the authorisation in a cenral file. Youl find a railscast here:

    http://railscasts.com/episodes/192-authorization-with-cancan

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

Sidebar

Related Questions

I need some advice on what kind of pattern(s) I should use for pushing/pulling
I need some advice on a little project im doing. I have a database
Ok, so I need some advice on which encryption method I should use for
I need some advice on my project. I am going to use various C++
I need some advice on css and styles, is not an easy question to
I need some advice how to use DataKeys and DataItemIndex fro a GRIDVIEW. I
I need some advice on how to tackle an algorithmic problem (ie. not programming
I need some advice regarding the use of a command line utility from a
I need some advice on a project that I am going to undertake. I
I need some advice for the best approach to use in developing embeddable widgets

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.