Browse Source

BMC: Set Http Protocol on SendNotificationForBwac method

feature/ForgotPasswordFunctionality
Palash Biswas 2 years ago
parent
commit
0b613fe1f5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      BCS.BMC/src/BCS.BMC.Web.Mvc/Controllers/NotificationController.cs

+ 1
- 1
BCS.BMC/src/BCS.BMC.Web.Mvc/Controllers/NotificationController.cs View File

@ -64,7 +64,7 @@ namespace BCS.BMC.Web.Controllers
var result = await _notificationService.SendNotification(notification); var result = await _notificationService.SendNotification(notification);
return result.Responses[0]; return result.Responses[0];
} }
[HttpPost]
public async Task<IActionResult> SendNotificationForBwac([FromBody] List<FireBaseResponseModel> notifications) public async Task<IActionResult> SendNotificationForBwac([FromBody] List<FireBaseResponseModel> notifications)
{ {
List<BmcMessageStatusInput> bmcMessageStatusInputs = new List<BmcMessageStatusInput>(); List<BmcMessageStatusInput> bmcMessageStatusInputs = new List<BmcMessageStatusInput>();


Loading…
Cancel
Save