Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for delete$index (0.2 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/plugin/ApiAdminPluginAction.java

         * @param body the plugin deletion data containing name and version
         * @return JSON response indicating success or failure
         */
        // DELETE /api/admin/plugin
        @Execute
        public JsonResponse<ApiResult> delete$index(final DeleteBody body) {
            validateApi(body, messages -> {});
            deleteArtifact(new Artifact(body.name, body.version));
            return asJson(new ApiResult.ApiResponse().status(ApiResult.Status.OK).result());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top