mirror of
https://github.com/redmine/redmine.git
synced 2025-12-16 05:20:28 +01:00
11 lines
224 B
Ruby
11 lines
224 B
Ruby
|
|
class IssuePriority < Enumeration
|
||
|
|
generator_for :name, :method => :next_name
|
||
|
|
generator_for :type => 'IssuePriority'
|
||
|
|
|
||
|
|
def self.next_name
|
||
|
|
@last_name ||= 'IssuePriority0'
|
||
|
|
@last_name.succ!
|
||
|
|
@last_name
|
||
|
|
end
|
||
|
|
end
|