##// END OF EJS Templates
Add Issue Status to the tooltip. #6169...
Add Issue Status to the tooltip. #6169 Contributed by Nick Peelman git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3952 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3556:6a6f40397885
r3838:782a5f121881
Show More
issue_priority_exemplar.rb
10 lines | 224 B | text/x-ruby | RubyLexer
/ test / exemplars / issue_priority_exemplar.rb
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