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

(-)a/Koha/REST/V1.pm (-1 / +1 lines)
Lines 75-81 sub startup { Link Here
75
        $self->secrets([$secret_passphrase]);
75
        $self->secrets([$secret_passphrase]);
76
    }
76
    }
77
77
78
    my $spec_file = $self->home->rel_file("api/v1/swagger/swagger_bundle.yaml");
78
    my $spec_file = $self->home->rel_file("api/v1/swagger/swagger_bundle.json");
79
79
80
    push @{$self->routes->namespaces}, 'Koha::Plugin';
80
    push @{$self->routes->namespaces}, 'Koha::Plugin';
81
81
(-)a/package.json (-2 / +1 lines)
Lines 54-60 Link Here
54
    "build:prod": "yarn css:build:prod && yarn js:build:prod",
54
    "build:prod": "yarn css:build:prod && yarn js:build:prod",
55
    "cypress": "cypress",
55
    "cypress": "cypress",
56
    "prettier": "prettier",
56
    "prettier": "prettier",
57
    "api:bundle": "redocly bundle api/v1/swagger/swagger.yaml > api/v1/swagger/swagger_bundle.yaml"
57
    "api:bundle": "redocly bundle --ext json api/v1/swagger/swagger.yaml --output api/v1/swagger/swagger_bundle.json"
58
  },
58
  },
59
  "repository": {
59
  "repository": {
60
    "type": "git",
60
    "type": "git",
61
- 

Return to bug 36546