feat: runtime manager

This commit is contained in:
Ilia Denisov
2026-04-28 20:39:18 +02:00
committed by GitHub
parent e0a99b346b
commit a7cee15115
289 changed files with 45660 additions and 2207 deletions
@@ -809,6 +809,12 @@ func (service *Service) adminEmailsFor(notificationType intentstream.Notificatio
return append([]string(nil), service.adminRouting.LobbyRuntimePausedAfterStart...)
case intentstream.NotificationTypeLobbyApplicationSubmitted:
return append([]string(nil), service.adminRouting.LobbyApplicationSubmitted...)
case intentstream.NotificationTypeRuntimeImagePullFailed:
return append([]string(nil), service.adminRouting.RuntimeImagePullFailed...)
case intentstream.NotificationTypeRuntimeContainerStartFailed:
return append([]string(nil), service.adminRouting.RuntimeContainerStartFailed...)
case intentstream.NotificationTypeRuntimeStartConfigInvalid:
return append([]string(nil), service.adminRouting.RuntimeStartConfigInvalid...)
default:
return nil
}