Guest User

Untitled

a guest
May 26th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class Article < ActiveRecord::Base
  2. belongs_to :author
  3. after_create do
  4. if title.blank?
  5. self.title = "#{author.first_name}'s article about Rails 3"
  6. end
  7. end
  8. end
Add Comment
Please, Sign In to add comment