Mercurial > hg > soundsoftware-site
view test/exemplars/custom_field_exemplar.rb @ 69:dc22c3eb3c81 luisf
Feature #35:
- Does not show the label "My Projects" if the user does not have any projects.
- If the user is not signed in only shows the default Projects list.
author | luisf |
---|---|
date | Mon, 06 Dec 2010 18:12:52 +0000 |
parents | 513646585e45 |
children | cbb26bc654de |
line wrap: on
line source
class CustomField < ActiveRecord::Base generator_for :name, :method => :next_name generator_for :field_format => 'string' def self.next_name @last_name ||= 'CustomField0' @last_name.succ! @last_name end end