summaryrefslogtreecommitdiff
path: root/lib/PAUSE/OpenID/Controller/Root.pm
diff options
context:
space:
mode:
authorMichael Kröll <pepl@cpan.org>2008-12-01 21:44:18 +0100
committerMichael Kröll <pepl@cpan.org>2008-12-01 21:44:18 +0100
commitbcad71d5980251cd9337afdedeca1aaf3d2461ca (patch)
tree3f4abd5a22f2b4d7f72f4afc81fec9498c76e633 /lib/PAUSE/OpenID/Controller/Root.pm
parentMerge branch 'master' of git@git.useperl.at:PAUSE-OpenID (diff)
downloadSimple-OpenID-bcad71d5980251cd9337afdedeca1aaf3d2461ca.tar.gz
Simple-OpenID-bcad71d5980251cd9337afdedeca1aaf3d2461ca.tar.bz2
Simple-OpenID-bcad71d5980251cd9337afdedeca1aaf3d2461ca.zip
Forgotten to add with last commit
Diffstat (limited to 'lib/PAUSE/OpenID/Controller/Root.pm')
-rw-r--r--lib/PAUSE/OpenID/Controller/Root.pm6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/PAUSE/OpenID/Controller/Root.pm b/lib/PAUSE/OpenID/Controller/Root.pm
index 915801c..c37b2c2 100644
--- a/lib/PAUSE/OpenID/Controller/Root.pm
+++ b/lib/PAUSE/OpenID/Controller/Root.pm
@@ -29,8 +29,12 @@ PAUSE::OpenID::Controller::Root - Root Controller for PAUSE::OpenID
sub index :Path :Args(0) {
my ( $self, $c ) = @_;
+$c->stash->{xml} =<<XML;
+<document/>
+XML
+
# Hello World
- $c->response->body( $c->welcome_message );
+ $c->forward('PAUSE::OpenID::View::XSLT');
}
sub default :Path {