pub async fn notifications_list(
since: Option<i64>,
log: State<'_, NotificationLogHandle>,
) -> Result<Vec<Notification>, AppError>Expand description
Return all notifications stored in the log.
When since is provided only notifications with
timestamp >= since (unix milliseconds) are returned.