diff options
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | backend/docs/docs.go | 2 | ||||
| -rw-r--r-- | backend/docs/index.html | 2 | ||||
| -rw-r--r-- | backend/docs/swagger.json | 2 | ||||
| -rw-r--r-- | backend/docs/swagger.yaml | 2 | ||||
| -rw-r--r-- | backend/main.go | 2 |
6 files changed, 6 insertions, 6 deletions
| @@ -34,7 +34,7 @@ There's also discussion tabs for each map to act like forum pages in order to ta | |||
| 34 | 34 | ||
| 35 | ## Documentation | 35 | ## Documentation |
| 36 | 36 | ||
| 37 | Full API documentation can be found at https://lp.ardapektezol.com/api/v1/ | 37 | Full API documentation can be found at https://lp.pektezol.dev/api/v1/ |
| 38 | 38 | ||
| 39 | ## License | 39 | ## License |
| 40 | 40 | ||
diff --git a/backend/docs/docs.go b/backend/docs/docs.go index 5327961..71bd68e 100644 --- a/backend/docs/docs.go +++ b/backend/docs/docs.go | |||
| @@ -2218,7 +2218,7 @@ const docTemplate = `{ | |||
| 2218 | // SwaggerInfo holds exported Swagger Info so clients can modify it | 2218 | // SwaggerInfo holds exported Swagger Info so clients can modify it |
| 2219 | var SwaggerInfo = &swag.Spec{ | 2219 | var SwaggerInfo = &swag.Spec{ |
| 2220 | Version: "1.0", | 2220 | Version: "1.0", |
| 2221 | Host: "lp.ardapektezol.com", | 2221 | Host: "lp.pektezol.dev", |
| 2222 | BasePath: "/api/v1", | 2222 | BasePath: "/api/v1", |
| 2223 | Schemes: []string{}, | 2223 | Schemes: []string{}, |
| 2224 | Title: "Least Portals Hub", | 2224 | Title: "Least Portals Hub", |
diff --git a/backend/docs/index.html b/backend/docs/index.html index 8d12274..f2b358d 100644 --- a/backend/docs/index.html +++ b/backend/docs/index.html | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | <script> | 17 | <script> |
| 18 | window.onload = () => { | 18 | window.onload = () => { |
| 19 | window.ui = SwaggerUIBundle({ | 19 | window.ui = SwaggerUIBundle({ |
| 20 | url: 'https://lp.ardapektezol.com/swagger.json', | 20 | url: 'https://lp.pektezol.dev/swagger.json', |
| 21 | dom_id: '#swagger-ui', | 21 | dom_id: '#swagger-ui', |
| 22 | }); | 22 | }); |
| 23 | }; | 23 | }; |
diff --git a/backend/docs/swagger.json b/backend/docs/swagger.json index 94a0213..879f35f 100644 --- a/backend/docs/swagger.json +++ b/backend/docs/swagger.json | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | }, | 10 | }, |
| 11 | "version": "1.0" | 11 | "version": "1.0" |
| 12 | }, | 12 | }, |
| 13 | "host": "lp.ardapektezol.com", | 13 | "host": "lp.pektezol.dev", |
| 14 | "basePath": "/api/v1", | 14 | "basePath": "/api/v1", |
| 15 | "paths": { | 15 | "paths": { |
| 16 | "/chapters/{chapterid}": { | 16 | "/chapters/{chapterid}": { |
diff --git a/backend/docs/swagger.yaml b/backend/docs/swagger.yaml index 26d28b1..2dee421 100644 --- a/backend/docs/swagger.yaml +++ b/backend/docs/swagger.yaml | |||
| @@ -545,7 +545,7 @@ definitions: | |||
| 545 | user_name: | 545 | user_name: |
| 546 | type: string | 546 | type: string |
| 547 | type: object | 547 | type: object |
| 548 | host: lp.ardapektezol.com | 548 | host: lp.pektezol.dev |
| 549 | info: | 549 | info: |
| 550 | contact: {} | 550 | contact: {} |
| 551 | description: Backend API endpoints for Least Portals Hub. | 551 | description: Backend API endpoints for Least Portals Hub. |
diff --git a/backend/main.go b/backend/main.go index edbe7f8..a1a4a20 100644 --- a/backend/main.go +++ b/backend/main.go | |||
| @@ -20,7 +20,7 @@ import ( | |||
| 20 | // @license.name GNU Affero General Public License, Version 3 | 20 | // @license.name GNU Affero General Public License, Version 3 |
| 21 | // @license.url https://www.gnu.org/licenses/agpl-3.0.html | 21 | // @license.url https://www.gnu.org/licenses/agpl-3.0.html |
| 22 | 22 | ||
| 23 | // @host lp.ardapektezol.com | 23 | // @host lp.pektezol.dev |
| 24 | // @BasePath /api/v1 | 24 | // @BasePath /api/v1 |
| 25 | func main() { | 25 | func main() { |
| 26 | err := godotenv.Load() | 26 | err := godotenv.Load() |