X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-CGI-Ex;a=blobdiff_plain;f=samples%2Fapp%2Fapp1%2Flib%2FApp1%2FThankyou.pm;fp=samples%2Fapp%2Fapp1%2Flib%2FApp1%2FThankyou.pm;h=e88e8b81c74fa3fd967f0e95e08573c7159fe6bc;hp=0000000000000000000000000000000000000000;hb=ed00221d27dfab1e82ec2ea040ab4c399a91c545;hpb=0b04f67c06c1db11969096f07dfc7dbb23bf99ba diff --git a/samples/app/app1/lib/App1/Thankyou.pm b/samples/app/app1/lib/App1/Thankyou.pm new file mode 100644 index 0000000..e88e8b8 --- /dev/null +++ b/samples/app/app1/lib/App1/Thankyou.pm @@ -0,0 +1,24 @@ +package App1::Thankyou; + +=head1 NAME + +App1::Thankyou - show the final page of the application + +=cut + +use strict; +use warnings; +use base qw(App1); +use CGI::Ex::Dump qw(debug); + +sub info_complete { 0 } # path officially ends here - don't try and run any other steps + +sub hash_swap { + my $self = shift; + return { + login_link => "some_sort_of_login_link", + }; +} + +1; +