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 149-152 __PACKAGE__->belongs_to( Link Here
149
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-21 07:16:46
149
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-21 07:16:46
150
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:K31ZTdC8ZmSuuKPACLnrUQ
150
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:K31ZTdC8ZmSuuKPACLnrUQ
151
151
152
153
__PACKAGE__->add_columns(
154
    '+is_enabled' => { is_boolean => 1 },
155
    '+force_sso'  => { is_boolean => 1 },
156
);
157
158
=head2 koha_object_class
159
160
Missing POD for koha_object_class.
161
162
=cut
163
164
165
sub koha_object_class  { 'Koha::Auth::Identity::Provider::Hostname' }
166
167
=head2 koha_objects_class
168
169
Missing POD for koha_objects_class.
170
171
=cut
172
173
sub koha_objects_class { 'Koha::Auth::Identity::Provider::Hostnames' }
174
152
1;
175
1;
(-)a/Koha/Schema/Result/IdentityProviderMapping.pm (-1 / +22 lines)
Lines 137-140 __PACKAGE__->belongs_to( Link Here
137
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-20 10:20:26
137
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-20 10:20:26
138
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:x2JmD4As/a96Ndoe5rzuKg
138
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:x2JmD4As/a96Ndoe5rzuKg
139
139
140
141
__PACKAGE__->add_columns(
142
    '+is_matchpoint' => { is_boolean => 1 },
143
);
144
145
=head2 koha_object_class
146
147
Missing POD for koha_object_class.
148
149
=cut
150
151
152
sub koha_object_class  { 'Koha::Auth::Identity::Provider::Mapping' }
153
154
=head2 koha_objects_class
155
156
Missing POD for koha_objects_class.
157
158
=cut
159
160
sub koha_objects_class { 'Koha::Auth::Identity::Provider::Mappings' }
161
140
1;
162
1;
141
- 

Return to bug 39224