Add FR translation
[manu/RT-Extension-FollowUp.git] / lib / RT / Extension / FollowUp.pm
1 package RT::Extension::FollowUp;
2
3 use warnings;
4 use strict;
5
6 =head1 NAME
7
8 RT::Extension::FollowUp - Allow RT users to quickly add
9 themself as Cc/AdminCc in the ticket action menu
10
11 =head1 VERSION
12
13 Version 0.01
14
15 =cut
16
17 our $VERSION = '0.01';
18
19
20 =head1 SYNOPSIS
21
22 This RT Extension adds two actions to the ticket actions
23 menu to allow the connected user with enough rights to add
24 himself as a Cc or AdminCc for this ticket.
25
26 =head1 AUTHOR
27
28 Emmanuel Lacour, C<< <elacour at home-dn.net> >>
29
30 =head1 BUGS
31
32 Please report any bugs or feature requests to C<bug-rt-extension-FollowUp at rt.cpan.org>, or through
33 the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=RT-Extension-FollowUp>.  I will be notified, and then you'll
34 automatically be notified of progress on your bug as I make changes.
35
36
37
38
39 =head1 SUPPORT
40
41 You can find documentation for this module with the perldoc command.
42
43     perldoc RT::Extension::FollowUp
44
45
46 You can also look for information at:
47
48 =over 4
49
50 =item * RT: CPAN's request tracker
51
52 L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=RT-Extension-FollowUp>
53
54 =item * AnnoCPAN: Annotated CPAN documentation
55
56 L<http://annocpan.org/dist/RT-Extension-FollowUp>
57
58 =item * CPAN Ratings
59
60 L<http://cpanratings.perl.org/d/RT-Extension-FollowUp>
61
62 =item * Search CPAN
63
64 L<http://search.cpan.org/dist/RT-Extension-FollowUp>
65
66 =back
67
68
69 =head1 ACKNOWLEDGEMENTS
70
71
72 =head1 COPYRIGHT & LICENSE
73
74 Copyright 2013 Emmanuel Lacour, all rights reserved.
75
76 This program is free software; you can redistribute it and/or modify it
77 under the same terms as Perl itself.
78
79 Request Tracker (RT) is Copyright Best Practical Solutions, LLC.
80
81 =cut
82
83 1; # End of RT::Extension::FollowUp