Fix openid attribute fetching using Credential::OpenID
[scpubgit/stemmaweb.git] / lib / stemmaweb / Controller / Users.pm
CommitLineData
19262e3d 1package stemmaweb::Controller::Users;
2use Moose;
3use namespace::autoclean;
4
5BEGIN {extends 'CatalystX::Controller::Auth'; }
6
7=head1 NAME
8
9stemmaweb::Controller::Users - Catalyst Controller
10
11=head1 DESCRIPTION
12
13Catalyst Controller.
14
15=head1 METHODS
16
17=cut
18
19sub base :Chained('/') :PathPart('') :CaptureArgs(0)
20{
21 my ( $self, $c ) = @_;
22
23 $self->next::method( $c );
24}
25
26=head2 index
27
28=cut
29
30sub index :Path :Args(0) {
31 my ( $self, $c ) = @_;
32
33 $c->response->body('Matched stemmaweb::Controller::Users in Users.');
34}
35
36
37=head1 AUTHOR
38
39A clever guy
40
41=head1 LICENSE
42
43This library is free software. You can redistribute it and/or modify
44it under the same terms as Perl itself.
45
46=cut
47
48__PACKAGE__->meta->make_immutable;
49
501;