standardizes the calendar resolver interface

Adds a little extra process into the calendar
resolver so that it mimics the mail and contact
resolvers.  This will allow us to collapse the
three resolvers into a more common handler
or interface.
This commit is contained in:
ryanfkeepers 2023-01-18 11:55:52 -07:00
parent 31a9aebf68
commit 8b7c0d5511

View File

@ -84,6 +84,10 @@ func (ecc *eventCalendarCache) Populate(
return errors.Wrap(err, "establishing calendar paths")
}
if err := ecc.populatePaths(ctx); err != nil {
return errors.Wrap(err, "establishing calendar paths")
}
return nil
}