##// END OF EJS Templates
Added missing Enumeration STI exemplars....
Eric Davis -
r3556:6a6f40397885
parent child
Show More
@@ -0,0 +1,10
1 class DocumentCategory < Enumeration
2 generator_for :name, :method => :next_name
3 generator_for :type => 'DocumentCategory'
4
5 def self.next_name
6 @last_name ||= 'DocumentCategory0'
7 @last_name.succ!
8 @last_name
9 end
10 end
@@ -0,0 +1,10
1 class IssuePriority < Enumeration
2 generator_for :name, :method => :next_name
3 generator_for :type => 'IssuePriority'
4
5 def self.next_name
6 @last_name ||= 'IssuePriority0'
7 @last_name.succ!
8 @last_name
9 end
10 end
General Comments 0
You need to be logged in to leave comments. Login now