started adding new workflow based approval process

This commit is contained in:
JT Smith 2006-03-15 20:15:55 +00:00
parent 9ff3308126
commit eb6a7a9416
14 changed files with 676 additions and 89 deletions

View file

@ -37,13 +37,19 @@ These methods are available from this class:
#-------------------------------------------------------------------
=head2 addMessage ( )
=head2 addMessage ( properties )
Adds a new message to the inbox.
=head3 properties
See WebGUI::Inbox::Message::create() for details.
=cut
sub addMessage {
my $self = shift;
return WebGUI::Inbox::Message->create($self);
return WebGUI::Inbox::Message->create($self->session, @_);
}
#-------------------------------------------------------------------