Add ability to configure auth redirect url per playground

This commit is contained in:
Marcos Lilljedahl
2020-11-11 23:20:10 -03:00
parent e8486b8100
commit 4b4b767e46
2 changed files with 14 additions and 8 deletions

View File

@@ -88,6 +88,7 @@ type Playground struct {
GoogleClientSecret string `json:"google_client_secret" bson:"google_client_secret"`
DockerClientID string `json:"docker_client_id" bson:"docker_client_id"`
DockerClientSecret string `json:"docker_client_secret" bson:"docker_client_secret"`
AuthRedirectURL string `json:"auth_redirect_url" bson:"auth_redirect_url"`
DockerHost string `json:"docker_host" bson:"docker_host"`
MaxInstances int `json:"max_instances" bson:"max_instances"`
Privileged bool `json:"privileged" bson:"privileged"`