no message
This commit is contained in:
parent
248d400666
commit
6f3d6f9d72
12 changed files with 19409 additions and 75 deletions
|
|
@ -121,6 +121,17 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
return Success();
|
||||
}
|
||||
|
||||
[HttpPost("email")]
|
||||
public async Task<ActionResult<ResponseObject>> SendEmail([FromBody] SendEmailRequest req)
|
||||
{
|
||||
await _repositoryNoti.PushEmailAsync(
|
||||
req.Subject,
|
||||
req.Body,
|
||||
req.Email
|
||||
);
|
||||
return Success();
|
||||
}
|
||||
|
||||
[HttpPost("profiles")]
|
||||
public async Task<ActionResult<ResponseObject>> UpdatePropertyByUserProfiles([FromBody] NotisRequest req)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue