pUSH CHANGES

This commit is contained in:
ouellette
2022-11-17 14:32:36 -07:00
parent 580e90f6a2
commit 7e283d3d36
98 changed files with 561367 additions and 10 deletions

View File

@ -72,6 +72,15 @@ namespace Fab2ApprovalSystem.Controllers
{
return request.CreateResponse(HttpStatusCode.InternalServerError);
}
case "ApprovalReminders":
if (homeFunctions.ApprovalsReminderNotifications())
{
return request.CreateResponse(HttpStatusCode.OK);
}
else
{
return request.CreateResponse(HttpStatusCode.InternalServerError);
}
default:
return request.CreateResponse(HttpStatusCode.InternalServerError, "Action Not Found");