public async Task <IOrderedEnumerable <Notification> > GetForUser(
     string userIdentifier,
     CancellationToken cancellationToken = default)
 {
     return((await _store.GetAllForUser(userIdentifier, cancellationToken))
            .OrderBy(n => n.TimeStamp));
 }