add notification for space unshares

This commit is contained in:
David Christofas
2022-12-21 11:20:42 +01:00
parent 68ead43000
commit 445e594eff
5 changed files with 134 additions and 3 deletions
@@ -68,6 +68,8 @@ func (s eventsNotifier) Run() error {
switch e := evt.(type) {
case events.SpaceShared:
s.handleSpaceShared(e)
case events.SpaceUnshared:
s.handleSpaceUnshared(e)
case events.ShareCreated:
s.handleShareCreated(e)
}