diff options
author | Jon Robertson <jonrober@stanford.edu> | 2014-10-09 09:55:21 -0700 |
---|---|---|
committer | Jon Robertson <jonrober@stanford.edu> | 2014-10-09 10:08:31 -0700 |
commit | 94cfb1c7969515a863d7b0e09f00b6ced5f4fc5c (patch) | |
tree | 754614133c58d20cc2547df035ebf0e180e7f3f1 /perl/lib | |
parent | 8cafcdfdaf66ca7a7735c899ce99a714e718197c (diff) |
Created tests for new Duo object types
Change-Id: I818be125f3195316b44e650ba6e05b8e0b831ea6
Diffstat (limited to 'perl/lib')
-rw-r--r-- | perl/lib/Wallet/Config.pm | 6 | ||||
-rw-r--r-- | perl/lib/Wallet/Object/Duo/LDAPProxy.pm | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/perl/lib/Wallet/Config.pm b/perl/lib/Wallet/Config.pm index 527658c..2eb57f9 100644 --- a/perl/lib/Wallet/Config.pm +++ b/perl/lib/Wallet/Config.pm @@ -217,9 +217,9 @@ our $DUO_KEY_FILE; =item DUO_TYPE -The type of integration to create. Currently, only one type of integration -can be created by one wallet configuration. This restriction may be relaxed -in the future. The default value is C<unix> to create UNIX integrations. +The type of integration to create. The default value is C<unix> to create +UNIX integrations, since this was the first integration created and users +may rely on it to still be the default. =cut diff --git a/perl/lib/Wallet/Object/Duo/LDAPProxy.pm b/perl/lib/Wallet/Object/Duo/LDAPProxy.pm index cd32523..757a61a 100644 --- a/perl/lib/Wallet/Object/Duo/LDAPProxy.pm +++ b/perl/lib/Wallet/Object/Duo/LDAPProxy.pm @@ -42,7 +42,7 @@ sub create { $time ||= time; my $self = $class->SUPER::create ($type, $name, $schema, $creator, $host, - $time, 'ldap'); + $time, 'ldapproxy'); return $self; } |