From 958feeb51d0e7efb322cb324750687ac3494c85d Mon Sep 17 00:00:00 2001 From: Marcos Lilljedahl Date: Sun, 18 Oct 2020 23:47:46 -0300 Subject: [PATCH] Fix typo in google client secret json field tag --- pwd/types/playground.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwd/types/playground.go b/pwd/types/playground.go index a66cc88..b448d39 100644 --- a/pwd/types/playground.go +++ b/pwd/types/playground.go @@ -87,7 +87,7 @@ type Playground struct { GoogleClientID string `json:"google_client_id" bson:"google_client_id"` GoogleClientSecret string `json:"google_client_secert" bson:"google_client_secret"` DockerClientID string `json:"docker_client_id" bson:"docker_client_id"` - DockerClientSecret string `json:"docker_client_secret" bson:"docker_client_secret"` + DockerClientSecret string `json:"google_client_secret" bson:"docker_client_secret"` DockerHost string `json:"docker_host" bson:"docker_host"` MaxInstances int `json:"max_instances" bson:"max_instances"` }