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

(-)a/Koha/REST/V1/Acquisitions/Vendor/Edifact/Files.pm (-2 / +1 lines)
Lines 56-63 sub list { Link Here
56
            status  => 200,
56
            status  => 200,
57
            openapi => $files,
57
            openapi => $files,
58
        );
58
        );
59
    }
59
    } catch {
60
    catch {
61
        $c->unhandled_exception($_);
60
        $c->unhandled_exception($_);
62
    };
61
    };
63
}
62
}
(-)a/Koha/Schema/Result/EdifactMessage.pm (-1 / +9 lines)
Lines 202-210 __PACKAGE__->add_columns( Link Here
202
    '+deleted' => { is_boolean => 1 },
202
    '+deleted' => { is_boolean => 1 },
203
);
203
);
204
204
205
=head2 koha_objects_class
206
207
=cut
208
205
sub koha_objects_class {
209
sub koha_objects_class {
206
    'Koha::Edifact::Files';
210
    'Koha::Edifact::Files';
207
}
211
}
212
213
=head2 koha_object_class
214
215
=cut
216
208
sub koha_object_class {
217
sub koha_object_class {
209
    'Koha::Edifact::File';
218
    'Koha::Edifact::File';
210
}
219
}
211
- 

Return to bug 30070