Skip to content

Commit

Permalink
fix handler
Browse files Browse the repository at this point in the history
  • Loading branch information
thmarx committed Nov 19, 2024
1 parent a54b1a7 commit fc9831d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ public boolean handle(Request request, Response response, Callback callback) thr
return true;
}

Response.writeError(request, response, callback, 404);
return true;
return false;
} catch (Exception e) {
log.error(null, e);
callback.failed(e);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package com.condation.cms.modules.system;

/**
*
* @author thmar
*/
public class ApiEndpoints {

}

0 comments on commit fc9831d

Please sign in to comment.