From cc612d505f22e5d895b6ebda61fe62498634cec5 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 31 Oct 2021 11:23:42 +0100 Subject: [PATCH] docs: make sure all links to vikunja pages are https --- docs/content/doc/development/database.md | 6 +++--- .../doc/development/translation-instructions-german.md | 2 +- docs/content/doc/usage/api.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/content/doc/development/database.md b/docs/content/doc/development/database.md index b63022837..dabea36a8 100644 --- a/docs/content/doc/development/database.md +++ b/docs/content/doc/development/database.md @@ -10,8 +10,8 @@ menu: # Database -Vikunja uses [xorm](http://xorm.io/) as an abstraction layer to handle the database connection. -Please refer to [their](http://xorm.io/docs/) documentation on how to exactly use it. +Vikunja uses [xorm](https://xorm.io/) as an abstraction layer to handle the database connection. +Please refer to [their](https://xorm.io/docs/) documentation on how to exactly use it. {{< table_of_contents >}} @@ -24,7 +24,7 @@ In other packages, use the `db.NewSession()` method to get a new database sessio To add a new table to the database, create the struct and [add a migration for it]({{< ref "db-migrations.md" >}}). -To learn more about how to configure your struct to create "good" tables, refer to [the xorm documentaion](http://xorm.io/docs/). +To learn more about how to configure your struct to create "good" tables, refer to [the xorm documentaion](https://xorm.io/docs/). In most cases you will also need to implement the `TableName() string` method on the new struct to make sure the table name matches the rest of the tables - plural. diff --git a/docs/content/doc/development/translation-instructions-german.md b/docs/content/doc/development/translation-instructions-german.md index 9059c2539..09396fd3a 100644 --- a/docs/content/doc/development/translation-instructions-german.md +++ b/docs/content/doc/development/translation-instructions-german.md @@ -73,4 +73,4 @@ Beispiel: „Benutzer:in“ ## Weiterführende Links -* http://docs.translatehouse.org/projects/localization-guide/en/latest/guide/translation_guidelines_german.html +* https://docs.translatehouse.org/projects/localization-guide/en/latest/guide/translation_guidelines_german.html diff --git a/docs/content/doc/usage/api.md b/docs/content/doc/usage/api.md index 582186064..114536425 100644 --- a/docs/content/doc/usage/api.md +++ b/docs/content/doc/usage/api.md @@ -11,7 +11,7 @@ menu: # API Documentation You can find the api docs under `http://vikunja.tld/api/v1/docs` of your instance. -A public instance is available on [try.vikunja.io](http://try.vikunja.io/api/v1/docs). +A public instance is available on [try.vikunja.io](https://try.vikunja.io/api/v1/docs). These docs are autgenerated from annotations in the code with swagger.