2009-10-19 02:25:00 +04:00
|
|
|
class Issue < ActiveRecord::Base
|
|
|
|
generator_for :subject, :method => :next_subject
|
|
|
|
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_subject
|
|
|
|
@last_subject ||= 'Subject 0'
|
|
|
|
@last_subject.succ!
|
|
|
|
@last_subject
|
|
|
|
end
|
|
|
|
|
|
|
|
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
|