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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T02:32:31+00:00 2026-05-22T02:32:31+00:00

I have a course model, which has_many timeslots. In the courses model, I have

  • 0

I have a “course” model, which has_many timeslots.

In the courses model, I have the following methods:

def available_timeslots
  tsarray = []
  self.timeslots.map{ |t|
    if t.available then
      tsarray << t
    end
  }
  tsarray
end

def earliest_slot
  self.available_timeslots.first(:order => :starting_date)
end

What I’m trying to do now is get the earliest available timeslot for each course. Without the availability filter, @course.earliest_slot works fine. But if I try @course.available_timeslots.earliest_slot brings back a “can’t convert hash into integer” message.

Any suggestions appreciated

  • 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-22T02:32:31+00:00Added an answer on May 22, 2026 at 2:32 am

    Zabba’s comment is right on the money. The available_timeslots method is returning an Array and you are calling the method first on that — but that is not the same as calling the method first on the object that a Rails association returns.

    I think you want to use scopes. So delete your available_timeslots method and add this to your Timeslot class:

    scope :available, where(:available => true)
    

    then in your earliest_slot method you can do

    self.timeslots.available.first(:order => :starting_date)
    

    and it will return the first available timeslot for the course referred to by ‘self’.

    (Note: I am making the assumption that ‘available’ is a boolean. If it is something else, change the where condition in the scope appropriately.)

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

Sidebar

Related Questions

I have an Invoice model which belongs to Customer (and of course Customer has_many
I have a model Course, which has several many to many relationships like Age
I have a data model in Doctrine/symfony. I have a 'Course' which has many
I have the following model: class Advisor < ActiveRecord::Base belongs_to :course end class Course
I have a model Category, which has_many Products, and a Product in turn has_many
I have Course's model and the course consist of several file (stored only link
I have a .dbml file which of course contains the auto-generated classes based on
I have two Entities University courses Course students i want to access all the
I have a practice exam for my compilers course with the following questions that
I have a Core Data model in which a Task entity includes an optional

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.