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

(-)a/koha-tmpl/intranet-tmpl/prog/js/fetch/sip2-api-client.js (-2 / +3 lines)
Lines 52-60 export class SIP2APIClient { Link Here
52
                            "institution,custom_item_fields,item_fields,custom_patron_fields,patron_attributes,screen_msg_regexs,sort_bin_mappings,system_preference_overrides",
52
                            "institution,custom_item_fields,item_fields,custom_patron_fields,patron_attributes,screen_msg_regexs,sort_bin_mappings,system_preference_overrides",
53
                    },
53
                    },
54
                }),
54
                }),
55
            getAll: params =>
55
            getAll: (query, params) =>
56
                this.httpClient.getAll({
56
                this.httpClient.getAll({
57
                    endpoint: "accounts",
57
                    endpoint: "accounts",
58
                    query,
59
                    params: params,
58
                }),
60
                }),
59
            delete: id =>
61
            delete: id =>
60
                this.httpClient.delete({
62
                this.httpClient.delete({
61
- 

Return to bug 41178