view test/exemplars/issue_category_exemplar.rb @ 444:b461f84ed41a feature_36

Publications: Routes for regular REST behaviour; Import view and controller action; New beahviour for new action.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Sat, 04 Jun 2011 18:08:01 +0100
parents 513646585e45
children cbb26bc654de
line wrap: on
line source
class IssueCategory < ActiveRecord::Base
  generator_for :name, :method => :next_name
  
  def self.next_name
    @last_name ||= 'Category 0001'
    @last_name.succ!
    @last_name
  end
end