|
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 |
- |
|
|