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

(-)a/Koha/REST/V1/Biblios.pm (-1 / +1 lines)
Lines 947-953 sub merge { Link Here
947
            $c->render( status => 400, json => {error => $error});
947
            $c->render( status => 400, json => {error => $error});
948
        }
948
        }
949
949
950
        return $c->render( status => 200, openapi => { message => sprintf("Successfuly merged %s into %s",
950
        return $c->render( status => 200, openapi => { message => sprintf("Successfully merged %s into %s",
951
            $bn_merge, $ref_biblionumber)
951
            $bn_merge, $ref_biblionumber)
952
        });
952
        });
953
    } catch {
953
    } catch {
(-)a/api/v1/swagger/paths/biblios_merge.yaml (-2 / +1 lines)
Lines 48-51 Link Here
48
          "$ref": "../swagger.yaml#/definitions/error"
48
          "$ref": "../swagger.yaml#/definitions/error"
49
    x-koha-authorization:
49
    x-koha-authorization:
50
      permissions:
50
      permissions:
51
        catalogue: "manage_item_groups"
51
        catalogue: "editcatalogue"
52
- 

Return to bug 33036