This commit is contained in:
David Langley 2021-07-19 22:13:23 +01:00
parent 89ece22f73
commit da993b5b58
4 changed files with 2 additions and 6 deletions

View File

@ -107,7 +107,6 @@ data class PushRule(
return (getActions().firstOrNull { it is Action.Highlight } as? Action.Highlight)?.highlight ?: false
}
/**
* Set the notification status.
*
@ -141,6 +140,4 @@ data class PushRule(
* @return true if the rule should not play sound
*/
fun shouldNotNotify() = actions.contains(Action.ACTION_DONT_NOTIFY)
companion object { }
}

View File

@ -47,6 +47,5 @@ internal class DefaultUpdatePushRuleActionsTask @Inject constructor(
pushRulesApi.updateRuleActions(params.kind.value, params.ruleId, body)
}
}
}
}