|
/lib/MyWeblog/Action/CreatePost.pm ------------------------------------ package MyWeblog::Action::CreatePost; use warnings; use strict; use base qw/Jifty::Action::Record::Create/; sub arguments { # This should return an arrayref of arguments my $self = shift; my $arg = $self->SUPER::arguments(@_); return $arg; } 1; ------------------------------------- And Post Model is same as the tutorial one. But it worked if I add the following lines at the end of lib/MyWeblog/Model/Post.pm except the error occuring in Administrative Console page as I previously described. ------------------------------------- package MyWeblog::Action::CreatePost; sub arguments { # This should return an arrayref of arguments my $self = shift; my $arg = $self->SUPER::arguments(@_); return $arg; } ------------------------------------- - |
-----------
InSuk Joung
-----------
_______________________________________________ jifty-devel mailing list [email protected] http://lists.jifty.org/cgi-bin/mailman/listinfo/jifty-devel
