- save progress;

This commit is contained in:
Vitalii Kiiko
2024-10-29 16:48:12 +01:00
parent 53041eb7f6
commit eeecbf2c69
3 changed files with 39 additions and 6 deletions

View File

@@ -5,6 +5,10 @@ const API_BASE_URL = process.env.REACT_APP_API_EXECUTION_ADDRESS;
export default class CommunicationService {
static getCommsByAmendmentId = (id, callback, errCallback, queryParams) => {
NetworkService.get(`${API_BASE_URL}/amendments/applicationEvaluation/${id}`, callback, errCallback, queryParams);
NetworkService.get(`${API_BASE_URL}/communication/${id}`, callback, errCallback, queryParams);
};
static getCommsByAmendmentId = (id, callback, errCallback, queryParams) => {
NetworkService.get(`${API_BASE_URL}/communication/${id}`, callback, errCallback, queryParams);
};
}