Browse Source

update banner image

feature/Redmine-17825-Email_Template
shakun 5 months ago
parent
commit
09b30e0da8
  1. 15
      Business/MobileV2/MobileV2Business.cs
  2. 4
      JsonRx/Api/MobileController.cs
  3. 2
      JsonRx/Config/ResponseMsg.json

15
Business/MobileV2/MobileV2Business.cs

@ -68,23 +68,22 @@ namespace Business.Mobile
dashBoardV2.bannerImages.Add(new BannerImages()
{
fileName = "one.jpg",
filePath = "https://mobile.imelondon.co.uk:2086/images/banners/1.png",
fileName = "two.jpg",
filePath = "https://mobile.imelondon.co.uk:2086/images/banners/2.png",
fileTitle = "file1",
Redirect = true,
RedirectURL = "https://imelondon.co.uk/"
Redirect = false
});
dashBoardV2.bannerImages.Add(new BannerImages()
{
fileName = "two.jpg",
filePath = "https://mobile.imelondon.co.uk:2086/images/banners/2.png",
fileName = "four.jpg",
filePath = "https://mobile.imelondon.co.uk:2086/images/banners/4.png",
fileTitle = "file1",
Redirect = false
});
dashBoardV2.bannerImages.Add(new BannerImages()
{
fileName = "three.jpg",
filePath = "https://mobile.imelondon.co.uk:2086/images/banners/3.png",
fileName = "five.jpg",
filePath = "https://mobile.imelondon.co.uk:2086/images/banners/5.png",
fileTitle = "file1",
Redirect = false
});

4
JsonRx/Api/MobileController.cs

@ -165,7 +165,8 @@ namespace JsonRx.Api
requestOTPModel.DeviceType = Util.GetDeviceType(Request);
requestOTPModel.ProcessId = ProcessId;
Log.Debug("RequestOTP | REQUEST : " + JsonConvert.SerializeObject(requestOTPModel));
var staticDataResponse = _requestServices.RequestOTP(requestOTPModel);
JsonRxResponse staticDataResponse = new JsonRxResponse();
staticDataResponse = _requestServices.RequestOTP(requestOTPModel);
return Ok(staticDataResponse);
}
@ -219,6 +220,7 @@ namespace JsonRx.Api
LogicalThreadContext.Properties[LoggerProperty.CREATEDBY] = model.userId ?? model.pCurrency;
LogicalThreadContext.Properties[LoggerProperty.METHODNAME] = "CalculateDefExRate";
LogicalThreadContext.Properties[LoggerProperty.IPADDRESS] = Request.GetClientIpAddress();
model.DeviceType = Util.GetDeviceType(Request);
Log.Debug("CalculateDefExRate | REQUEST : " + JsonConvert.SerializeObject(model));
if (ModelState.IsValid)
{

2
JsonRx/Config/ResponseMsg.json

@ -1901,7 +1901,7 @@
},
{
"Key": "INVITE_MESSAGE_BODY",
"Message": "You and your friend will each be given £ @rewardAmount in bonus credit. Get £ @RegReward after they successfully register, and £ @TranReward after their first transaction. There may be minimum send requirements. Terms and Conditions.",
"Message": "You and your friend will each be given @rewardAmount £ in bonus credit. There may be minimum send requirements.",
"Lang": "en"
},
{

Loading…
Cancel
Save