source: server/trunk/web/lib/Sophie/Controller/Chat/Cmd.pm @ 46

Last change on this file since 46 was 38, checked in by nanardon, 14 years ago
  • start explorer page
  • some function in Chat/
File size: 667 bytes
Line 
1package Sophie::Controller::Chat::Cmd;
2use Moose;
3use namespace::autoclean;
4
5BEGIN {extends 'Catalyst::Controller'; }
6
7=head1 NAME
8
9Sophie::Controller::Chat::Cmd - Catalyst Controller
10
11=head1 DESCRIPTION
12
13Catalyst Controller.
14
15=head1 METHODS
16
17=cut
18
19
20=head2 index
21
22=cut
23
24sub help : XMLRPC {
25    my ( $self, $c, $reqspec, @args ) = @_;
26    return $c->{stash}->{xmlrpc} = [ grep { m/^[^_]/ } map { $_->name } $self->get_action_methods() ];
27}
28
29
30sub me : XMLRPC {
31}
32
33
34
35=head1 AUTHOR
36
37Olivier Thauvin
38
39=head1 LICENSE
40
41This library is free software. You can redistribute it and/or modify
42it under the same terms as Perl itself.
43
44=cut
45
46__PACKAGE__->meta->make_immutable;
47
481;
Note: See TracBrowser for help on using the repository browser.