blob: 2d726fc5e9267756bf3cb9a8e4c62d081140451a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
package CatDap::Model::User;
use strict;
use warnings;
#use base qw/Catalyst::Model::LDAP/;
use Moose;
use namespace::autoclean;
extends 'Catalyst::Model::LDAP::FromAuthentication';
__PACKAGE__->config(
base => 'ou=People,dc=mageia,dc=org',
dn => 'cn=dummy',
password => 'dummy',
);
=head1 NAME
CatDap::Model::User - LDAP Catalyst model component
=head1 SYNOPSIS
See L<CatDap>.
=head1 DESCRIPTION
LDAP Catalyst model component.
=head1 AUTHOR
Buchan Milne
=head1 LICENSE
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
1;
|