banners start

This commit is contained in:
CHIEFSOFT\ameye
2024-09-11 22:39:22 -04:00
parent 186d89a830
commit afcc1b777f
3 changed files with 30 additions and 10 deletions
+14 -9
View File
@@ -187,17 +187,22 @@ long ScheduleTransferJobs(CVars in, CVars &out){
long TestNotificationsJobs(CVars in, CVars &out){
long push_ret = -1;
CVars xx;
xx["member_uid"] = "70d8ecc4-490f-40e5-9cea-0484f0a9f584"; xx["member_uid"].set_valid( true );
xx["push_text"] = "Notification test system...Olu"; xx["push_text"].set_valid( true );
push_ret = BkoSendPush( xx, out);
try{
xx["member_uid"] = "70d8ecc4-490f-40e5-9cea-0484f0a9f584"; xx["member_uid"].set_valid( true );
xx["push_text"] = "Notification test system...Olu"; xx["push_text"].set_valid( true );
push_ret = BkoSendPush( xx, out);
xx["member_uid"] = "d96607ee-37ac-458f-a57d-7f2027a9ba11"; xx["member_uid"].set_valid( true );
xx["push_text"] = "Notification test system...Obax"; xx["push_text"].set_valid( true );
push_ret = BkoSendPush( xx, out);
xx["member_uid"] = "d96607ee-37ac-458f-a57d-7f2027a9ba11"; xx["member_uid"].set_valid( true );
xx["push_text"] = "Notification test system...Obax"; xx["push_text"].set_valid( true );
push_ret = BkoSendPush( xx, out);
xx["member_uid"] = "52cee358-759f-42f5-8cfb-d3f77b323c1a"; xx["member_uid"].set_valid( true );
xx["push_text"] = "Notification test system...Toks"; xx["push_text"].set_valid( true );
push_ret = BkoSendPush( xx, out);
//52cee358-759f-42f5-8cfb-d3f77b323c1a
xx["member_uid"] = "52cee358-759f-42f5-8cfb-d3f77b323c1a"; xx["member_uid"].set_valid( true );
xx["push_text"] = "Notification test system...Toks"; xx["push_text"].set_valid( true );
push_ret = BkoSendPush( xx, out);
} catch (bad_parameter) {
logfmt(logINFO, "ERROR CALL long TestNotificationsJobs(CVars in, CVars &out)");
}
return 0;
}