/[transports]/trunk/lib/Transports/Action/Logout.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/lib/Transports/Action/Logout.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 20 - (show annotations)
Fri May 26 17:39:17 2006 UTC (17 years, 11 months ago) by dpavlin
File size: 416 byte(s)
logout which works :-)
1 use warnings;
2 use strict;
3
4 =head1 NAME
5
6 Transports::Action::Logout
7
8 =cut
9
10 package Transports::Action::Logout;
11 use base qw/Transports::Action Jifty::Action/;
12
13 =head2 arguments
14
15 Return the email and password form fields
16
17 =cut
18
19 sub arguments {
20 return( { });
21 }
22
23 =head2 take_action
24
25 Nuke the current user object
26
27 =cut
28
29 sub take_action {
30 my $self = shift;
31 Jifty->web->current_user(undef);
32 return 1;
33 }
34
35 1;

  ViewVC Help
Powered by ViewVC 1.1.26