View | Details | Raw Unified | Return to bug 40596
Collapse All | Expand All

(-)a/Koha/Auth/Identity/Provider.pm (-3 / +4 lines)
Lines 217-224 implementing I<classes>. To be used by B<upgrade_class>. Link Here
217
217
218
sub protocol_to_class_mapping {
218
sub protocol_to_class_mapping {
219
    return {
219
    return {
220
        OAuth => 'Koha::Auth::Identity::Provider::OAuth',
220
        OAuth      => 'Koha::Auth::Identity::Provider::OAuth',
221
        OIDC  => 'Koha::Auth::Identity::Provider::OIDC',
221
        OIDC       => 'Koha::Auth::Identity::Provider::OIDC',
222
        CAS        => 'Koha::Auth::Identity::Provider::CAS',
223
        Shibboleth => 'Koha::Auth::Identity::Provider::Shibboleth',
222
    };
224
    };
223
}
225
}
224
226
225
- 

Return to bug 40596