source: trunk/LATMOS-Accounts-Web/lib/LATMOS/Accounts/Web/Controller/Data.pm @ 2469

Last change on this file since 2469 was 2316, checked in by nanardon, 5 years ago

Call post-synchro in a efficient way

This patch add callback to base allowing to web part to know when
commit() were done. Then call_sync_batch is run only when commit were
successfully done.

File size: 708 bytes
Line 
1package LATMOS::Accounts::Web::Controller::Data;
2use Moose;
3use namespace::autoclean;
4
5BEGIN { extends 'Catalyst::Controller'; }
6
7=head1 NAME
8
9LATMOS::Accounts::Web::Controller::Data - 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 index :Path :Args(0) {
25    my ( $self, $c ) = @_;
26
27}
28
29sub end : Private {
30    my ( $self, $c ) = @_;
31
32    $c->stash->{data} ||= {};
33    $c->forward('CSV');
34}
35
36=encoding utf8
37
38=head1 AUTHOR
39
40Olivier Thauvin,Guyancourt - B1428,+33 1 80285052,
41
42=head1 LICENSE
43
44This library is free software. You can redistribute it and/or modify
45it under the same terms as Perl itself.
46
47=cut
48
49__PACKAGE__->meta->make_immutable;
50
511;
Note: See TracBrowser for help on using the repository browser.