| Perldoc-Server documentation | Contained in the Perldoc-Server distribution. |
Perldoc::Server::Controller::Ajax - Catalyst Controller
Catalyst Controller.
Jon Allen
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
| Perldoc-Server documentation | Contained in the Perldoc-Server distribution. |
package Perldoc::Server::Controller::Ajax; use strict; use warnings; use parent 'Catalyst::Controller';
sub clear_most_viewed :Local :Args(0) { my ($self, $c) = @_; $c->session->{counter} = {}; push @{$c->stash->{openthought}}, {most_viewed => ''}; $c->detach('View::OpenThoughtTT'); }
1;