| Jifty-Plugin-Authentication-CAS documentation | Contained in the Jifty-Plugin-Authentication-CAS distribution. |
Jifty::Plugin::Authentication::CAS::Mixin::Model::User - CAS mixin for User model
Jifty::Plugin::Authentication::CAS mixin for the User model. Provides an 'cas_id' column.
| Jifty-Plugin-Authentication-CAS documentation | Contained in the Jifty-Plugin-Authentication-CAS distribution. |
package Jifty::Plugin::Authentication::CAS::Mixin::Model::User; use strict; use warnings; use Jifty::DBI::Schema; use base 'Jifty::DBI::Record::Plugin';
our @EXPORT = qw(has_alternative_auth); use Jifty::Plugin::Authentication::CAS::Record schema { column cas_id => type is 'text', label is 'CAS ID', is distinct, is immutable; };
sub has_alternative_auth { 1 } 1;