source: trunk/LATMOS-Accounts-Web/lib/LATMOS/Accounts/Web/Controller/Logout.pm @ 1609

Last change on this file since 1609 was 886, checked in by nanardon, 13 years ago
  • use HTTP authetntication to allow SSL/KRB auth one day
  • Property svn:keywords set to Id
File size: 587 bytes
Line 
1package LATMOS::Accounts::Web::Controller::Logout;
2use Moose;
3use namespace::autoclean;
4
5BEGIN {extends 'Catalyst::Controller'; }
6
7=head1 NAME
8
9LATMOS::Accounts::Web::Controller::Logout - Catalyst Controller
10
11=head1 DESCRIPTION
12
13Catalyst Controller.
14
15=head1 METHODS
16
17=cut
18
19sub begin : Private {
20}
21
22=head2 index
23
24=cut
25
26sub index :Path :Args(0) {
27    my ( $self, $c ) = @_;
28
29    $c->logout;
30}
31
32=head1 AUTHOR
33
34olivier
35
36=head1 LICENSE
37
38This library is free software. You can redistribute it and/or modify
39it under the same terms as Perl itself.
40
41=cut
42
43__PACKAGE__->meta->make_immutable;
44
451;
Note: See TracBrowser for help on using the repository browser.