- added registartion page;
- implemented validation helper-functions; - fixed form fields datepicker and datepicker range; - updated routes logic; - fixed FAQ items editing/submission;
This commit is contained in:
@@ -16,8 +16,8 @@ export default class FormsService {
|
||||
NetworkService.post(`${API_BASE_URL}/form/call/${id}`, body, callback, errCallback);
|
||||
};
|
||||
|
||||
static updateForm = (id, body, callback, errCallback) => {
|
||||
NetworkService.put(`${API_BASE_URL}/form/${id}`, body, callback, errCallback);
|
||||
static updateForm = (id, body, callback, errCallback, queryParams) => {
|
||||
NetworkService.put(`${API_BASE_URL}/form/${id}`, body, callback, errCallback, queryParams);
|
||||
};
|
||||
|
||||
static getFormById = (id, callback, errCallback) => {
|
||||
|
||||
Reference in New Issue
Block a user