Skip to content

Commit 209d9cc

Browse files
committed
Fix: https
1 parent 8bc8a25 commit 209d9cc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

coderd/apidoc/docs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const docTemplate = `{
1313
"termsOfService": "https://coder.com/legal/terms-of-service",
1414
"contact": {
1515
"name": "API Support",
16-
"url": "http://coder.com",
16+
"url": "https://coder.com",
1717
"email": "support@coder.com"
1818
},
1919
"license": {

coderd/apidoc/swagger.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"termsOfService": "https://coder.com/legal/terms-of-service",
77
"contact": {
88
"name": "API Support",
9-
"url": "http://coder.com",
9+
"url": "https://coder.com",
1010
"email": "support@coder.com"
1111
},
1212
"license": {

coderd/coderd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ type Options struct {
122122
// @termsOfService https://coder.com/legal/terms-of-service
123123

124124
// @contact.name API Support
125-
// @contact.url http://coder.com
125+
// @contact.url https://coder.com
126126
// @contact.email support@coder.com
127127

128128
// @license.name AGPL-3.0

0 commit comments

Comments
 (0)