Hello everyone,
I am developing a web app that is being used to track users and their associated events. Events could be like 'getting married', 'having a baby', 'buying a car', etc. and each event has a median age associated with it. For instance the getting married median age is 25.
I have the application working with checkboxes where you can click edit on a user and see all the possible events listed and the events that are associated with that user have a check in the checkbox next to the event.
See screen shot here: http://www.jonkinney.com/rails/Picture3.png
I am using a join model called occurrence.
the new task I am faced with is upon the creation of a new user I would like to auto associate all events with them based on the user's age and the ages defined in the events. Eventually I would like to have it so that you can be within 5 years on either side of the median age defined for the event and it will auto associate upon creation of a new user.
Here is some of my code...
I was trying to get it to work with a callback in the user model called 'before_save :assign_age_items'
class User < ActiveRecord::Base has_many :occurrences, :dependent => :destroy #, :conditions => "enabled = 1" has_many :events, :through => :occurrences
before_save :assign_age_items
validates_uniqueness_of :username, :on => :create, :message => "must be unique" validates_presence_of :username, :on => :create, :message => "can't be blank" validates_presence_of :password, :on => :create, :message => "can't be blank" validates_presence_of :email, :on => :create, :message => "can't be blank" validates_presence_of :fname, :on => :create, :message => "can't be blank" validates_presence_of :lname, :on => :create, :message => "can't be blank" validates_presence_of :gender, :on => :create, :message => "can't be blank"
###### This doesn't work attr_reader :user
def initialize(user) @user = user end