2009-10-18 22:25:00 +00:00
|
|
|
class Issue < ActiveRecord::Base
|
2011-09-22 20:51:42 +00:00
|
|
|
generator_for :subject, :start => 'Subject 0'
|
2009-10-18 22:25:00 +00:00
|
|
|
generator_for :author, :method => :next_author
|
2010-02-08 18:53:12 +00:00
|
|
|
generator_for :priority, :method => :fetch_priority
|
2009-10-18 22:25:00 +00:00
|
|
|
|
|
|
|
def self.next_author
|
|
|
|
User.generate_with_protected!
|
|
|
|
end
|
|
|
|
|
2010-02-08 18:53:12 +00:00
|
|
|
def self.fetch_priority
|
|
|
|
IssuePriority.first || IssuePriority.generate!
|
|
|
|
end
|
2009-10-18 22:25:00 +00:00
|
|
|
end
|