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