Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / SL / DB / Helper / ALLAuth.pm
1 package SL::DB::Helper::ALLAuth;
2
3 use strict;
4
5 use SL::DB::AuthGroup;
6 use SL::DB::AuthGroupRight;
7 use SL::DB::AuthUserConfig;
8 use SL::DB::AuthUser;
9
10 1;
11
12 __END__
13
14 =pod
15
16 =head1 NAME
17
18 SL::DB::Helper::ALLAuth: Dependency-only package for all SL::DB::Auth* modules
19
20 =head1 SYNOPSIS
21
22   use SL::DB::Helper::ALLAuth;
23
24 =head1 DESCRIPTION
25
26 This module depends on all modules in SL/DB/Auth*.pm for the
27 convenience of being able to write a simple \C<use
28 SL::DB::Helper::ALLAuth> and having everything loaded. This is
29 supposed to be used only in the kivitendo console. Normal modules
30 should C<use> only the modules they actually need.
31
32 =head1 AUTHOR
33
34 Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>
35
36 =cut