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

(-)a/Koha/Schema/Result/Hostname.pm (+16 lines)
Lines 95-98 __PACKAGE__->has_many( Link Here
95
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-20 10:20:26
95
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-20 10:20:26
96
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:uvzH69NxZ1akNcfsvgRDIg
96
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:uvzH69NxZ1akNcfsvgRDIg
97
97
98
=head2 koha_object_class
99
100
Missing POD for koha_object_class.
101
102
=cut
103
104
sub koha_object_class  { 'Koha::Auth::Hostname' }
105
106
=head2 koha_objects_class
107
108
Missing POD for koha_objects_class.
109
110
=cut
111
112
sub koha_objects_class { 'Koha::Auth::Hostnames' }
113
98
1;
114
1;
(-)a/Koha/Schema/Result/IdentityProvider.pm (+18 lines)
Lines 178-183 __PACKAGE__->has_many( Link Here
178
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-21 07:16:46
178
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-21 07:16:46
179
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4T1F2ggwQdvVV7jskMZwig
179
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4T1F2ggwQdvVV7jskMZwig
180
180
181
__PACKAGE__->add_columns(
182
    '+enabled'         => { is_boolean => 1 },
183
);
184
181
__PACKAGE__->has_many(
185
__PACKAGE__->has_many(
182
  "domains",
186
  "domains",
183
  "Koha::Schema::Result::IdentityProviderDomain",
187
  "Koha::Schema::Result::IdentityProviderDomain",
Lines 185-190 __PACKAGE__->has_many( Link Here
185
  { cascade_copy => 0, cascade_delete => 0 },
189
  { cascade_copy => 0, cascade_delete => 0 },
186
);
190
);
187
191
192
__PACKAGE__->has_many(
193
  "hostnames",
194
  "Koha::Schema::Result::IdentityProviderHostname",
195
  { "foreign.identity_provider_id" => "self.identity_provider_id" },
196
  { cascade_copy => 0, cascade_delete => 0 },
197
);
198
199
__PACKAGE__->has_many(
200
  "mappings",
201
  "Koha::Schema::Result::IdentityProviderMapping",
202
  { "foreign.identity_provider_id" => "self.identity_provider_id" },
203
  { cascade_copy => 0, cascade_delete => 0 },
204
);
205
188
=head2 koha_object_class
206
=head2 koha_object_class
189
207
190
Missing POD for koha_object_class.
208
Missing POD for koha_object_class.
(-)a/Koha/Schema/Result/IdentityProviderDomain.pm (-1 / +2 lines)
Lines 234-240 __PACKAGE__->add_columns( Link Here
234
    '+auto_register_staff' => { is_boolean => 1 },
234
    '+auto_register_staff' => { is_boolean => 1 },
235
    '+update_on_auth'      => { is_boolean => 1 },
235
    '+update_on_auth'      => { is_boolean => 1 },
236
    '+allow_opac'          => { is_boolean => 1 },
236
    '+allow_opac'          => { is_boolean => 1 },
237
    '+allow_staff'         => { is_boolean => 1 }
237
    '+allow_staff'         => { is_boolean => 1 },
238
    '+send_welcome_email'  => { is_boolean => 1 },
238
);
239
);
239
240
240
=head2 koha_object_class
241
=head2 koha_object_class
(-)a/Koha/Schema/Result/IdentityProviderHostname.pm (+23 lines)
Lines 159-162 __PACKAGE__->belongs_to( Link Here
159
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-21 07:16:46
159
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-21 07:16:46
160
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:K31ZTdC8ZmSuuKPACLnrUQ
160
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:K31ZTdC8ZmSuuKPACLnrUQ
161
161
162
163
__PACKAGE__->add_columns(
164
    '+is_enabled' => { is_boolean => 1 },
165
    '+force_sso'  => { is_boolean => 1 },
166
);
167
168
=head2 koha_object_class
169
170
Missing POD for koha_object_class.
171
172
=cut
173
174
175
sub koha_object_class  { 'Koha::Auth::Identity::Provider::Hostname' }
176
177
=head2 koha_objects_class
178
179
Missing POD for koha_objects_class.
180
181
=cut
182
183
sub koha_objects_class { 'Koha::Auth::Identity::Provider::Hostnames' }
184
162
1;
185
1;
(-)a/Koha/Schema/Result/IdentityProviderMapping.pm (-1 / +18 lines)
Lines 126-129 __PACKAGE__->belongs_to( Link Here
126
126
127
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-20 10:20:26
127
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-20 10:20:26
128
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:x2JmD4As/a96Ndoe5rzuKg
128
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:x2JmD4As/a96Ndoe5rzuKg
129
130
=head2 koha_object_class
131
132
Missing POD for koha_object_class.
133
134
=cut
135
136
137
sub koha_object_class  { 'Koha::Auth::Identity::Provider::Mapping' }
138
139
=head2 koha_objects_class
140
141
Missing POD for koha_objects_class.
142
143
=cut
144
145
sub koha_objects_class { 'Koha::Auth::Identity::Provider::Mappings' }
146
129
1;
147
1;
130
- 

Return to bug 39224