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

(-)a/Koha/Schema/Result/BorrowerMessagePreference.pm (+8 lines)
Lines 193-196 __PACKAGE__->many_to_many( Link Here
193
193
194
194
195
# You can replace this text with custom content, and it will be preserved on regeneration
195
# You can replace this text with custom content, and it will be preserved on regeneration
196
197
sub koha_object_class {
198
  'Koha::Patron::Message::Preference';
199
}
200
sub koha_objects_class {
201
  'Koha::Patron::Message::Preferences';
202
}
203
196
1;
204
1;
(-)a/Koha/Schema/Result/BorrowerMessageTransportPreference.pm (+8 lines)
Lines 112-115 __PACKAGE__->belongs_to( Link Here
112
112
113
113
114
# You can replace this text with custom content, and it will be preserved on regeneration
114
# You can replace this text with custom content, and it will be preserved on regeneration
115
116
sub koha_object_class {
117
  'Koha::Patron::Message::Transport::Preference';
118
}
119
sub koha_objects_class {
120
  'Koha::Patron::Message::Transport::Preferences';
121
}
122
115
1;
123
1;
(-)a/Koha/Schema/Result/MessageAttribute.pm (+8 lines)
Lines 117-120 __PACKAGE__->has_many( Link Here
117
117
118
118
119
# You can replace this text with custom content, and it will be preserved on regeneration
119
# You can replace this text with custom content, and it will be preserved on regeneration
120
121
sub koha_object_class {
122
  'Koha::Patron::Message::Attribute';
123
}
124
sub koha_objects_class {
125
  'Koha::Patron::Message::Attributes';
126
}
127
120
1;
128
1;
(-)a/Koha/Schema/Result/MessageTransport.pm (+8 lines)
Lines 134-137 __PACKAGE__->belongs_to( Link Here
134
134
135
135
136
# You can replace this text with custom content, and it will be preserved on regeneration
136
# You can replace this text with custom content, and it will be preserved on regeneration
137
138
sub koha_object_class {
139
  'Koha::Patron::Message::Transport';
140
}
141
sub koha_objects_class {
142
  'Koha::Patron::Message::Transports';
143
}
144
137
1;
145
1;
(-)a/Koha/Schema/Result/MessageTransportType.pm (-1 / +8 lines)
Lines 155-158 __PACKAGE__->many_to_many( Link Here
155
155
156
156
157
# You can replace this text with custom content, and it will be preserved on regeneration
157
# You can replace this text with custom content, and it will be preserved on regeneration
158
159
sub koha_object_class {
160
  'Koha::Patron::Message::Transport::Type';
161
}
162
sub koha_objects_class {
163
  'Koha::Patron::Message::Transport::Types';
164
}
165
158
1;
166
1;
159
- 

Return to bug 17499