Fix notification priorities

master
Mark Veidemanis 3 years ago
parent 5dcd33433d
commit 6aa765183e
Signed by: m
GPG Key ID: 5ACFCEED46C0904F

@ -32,14 +32,14 @@ class Notify(object):
def notify_new_trade(self, amount, currency): def notify_new_trade(self, amount, currency):
amount_usd = self.agora.to_usd(amount, currency) amount_usd = self.agora.to_usd(amount, currency)
self.sendmsg(f"Total: {amount_usd}", title="New trade", tags="trades", priority=2) self.sendmsg(f"Total: {amount_usd}", title="New trade", tags="trades", priority="2")
def notify_complete_trade(self, amount, currency): def notify_complete_trade(self, amount, currency):
amount_usd = self.agora.to_usd(amount, currency) amount_usd = self.agora.to_usd(amount, currency)
self.sendmsg(f"Total: {amount_usd}", title="Trade complete", tags="trades,profit", priority=3) self.sendmsg(f"Total: {amount_usd}", title="Trade complete", tags="trades,profit", priority="3")
def notify_withdrawal(self, amount_usd): def notify_withdrawal(self, amount_usd):
self.sendmsg(f"Total: {amount_usd}", title="Withdrawal", tags="profit", priority=4) self.sendmsg(f"Total: {amount_usd}", title="Withdrawal", tags="profit", priority="4")
def notify_need_topup(self, amount_usd_xmr, amount_usd_btc): def notify_need_topup(self, amount_usd_xmr, amount_usd_btc):
self.sendmsg(f"XMR: {amount_usd_xmr} | BTC: {amount_usd_btc}", title="Topup needed", tags="admin", priority=5) self.sendmsg(f"XMR: {amount_usd_xmr} | BTC: {amount_usd_btc}", title="Topup needed", tags="admin", priority="5")

Loading…
Cancel
Save