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

(-)a/Koha/Schema/Result/IdentityProvider.pm (-3 / +2 lines)
Lines 50-56 Description for the provider Link Here
50
=head2 protocol
50
=head2 protocol
51
51
52
  data_type: 'enum'
52
  data_type: 'enum'
53
  extra: {list => ["OAuth","OIDC","SAML2"]}
53
  extra: {list => ["CAS","OAuth","OIDC","SAML2"]}
54
  is_nullable: 0
54
  is_nullable: 0
55
55
56
Protocol provider speaks
56
Protocol provider speaks
Lines 90-96 __PACKAGE__->add_columns( Link Here
90
  "protocol",
90
  "protocol",
91
  {
91
  {
92
    data_type => "enum",
92
    data_type => "enum",
93
    extra => { list => ["OAuth", "OIDC", "SAML2"] },
93
    extra => { list => ["CAS", "OAuth", "OIDC", "SAML2"] },
94
    is_nullable => 0,
94
    is_nullable => 0,
95
  },
95
  },
96
  "config",
96
  "config",
97
- 

Return to bug 40596