logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Net::Trac::TicketHistory - A Trac ticket's history

Accessors

connectionticket
       Returns the ID of the ticket whose history this object represents.

   entries
       Returns an arrayref of Net::Trac::TicketHistoryEntrys.

Description

       This class represents a Trac ticket's history and is really just a collection of
       Net::Trac::TicketHistoryEntries.

License

       Copyright 2008-2009 Best Practical Solutions.

       This package is licensed under the same terms as Perl 5.8.8.

perl v5.36.0                                       2022-12-12                      Net::Trac::TicketHistory(3pm)

Methods

loadID
       Loads the history of the specified ticket.

Name

       Net::Trac::TicketHistory - A Trac ticket's history

Synopsis

           my $history = Net::Trac::TicketHistory->new( connection => $trac );
           $history->load( 13 );

           # Print the authors of all the changes to ticket #13
           for ( @{ $history->entries } ) {
               print $_->author, "\n";
           }

See Also