+4
appview/oauth/oauth.go
+4
appview/oauth/oauth.go
···
74
74
75
75
clientApp := oauth.NewClientApp(&oauthConfig, authStore)
76
76
clientApp.Dir = res.Directory()
77
+
// allow non-public transports in dev mode
78
+
if config.Core.Dev {
79
+
clientApp.Resolver.Client.Transport = http.DefaultTransport
80
+
}
77
81
78
82
clientName := config.Core.AppviewName
79
83