refactor: adjust http status of feedback route

This commit is contained in:
Jovan Krunić
2021-10-12 16:50:08 +02:00
parent a2b2cefe8e
commit 0745b1af72

View File

@@ -59,7 +59,7 @@ export class SCFeedbackRoute extends SCAbstractRoute {
this.method = SCRouteHttpVerbs.POST; this.method = SCRouteHttpVerbs.POST;
this.requestBodyName = 'SCFeedbackRequest'; this.requestBodyName = 'SCFeedbackRequest';
this.responseBodyName = 'SCFeedbackResponse'; this.responseBodyName = 'SCFeedbackResponse';
this.statusCodeSuccess = StatusCodes.NO_CONTENT; this.statusCodeSuccess = StatusCodes.OK;
this.urlFragment = '/feedback'; this.urlFragment = '/feedback';
} }
} }