Skip to content

Commit

Permalink
Fix documentation links on the version API endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
aarranz committed Oct 24, 2018
1 parent bb2fa94 commit 8521b2b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/wirecloud/platform/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ def version_entry(request):
"version": wirecloud.platform.__version__,
"uptime": "%d d, %d h, %d m, %d s" % (td.days, td.seconds // 3600, (td.seconds // 60) % 60, td.seconds % 60),
"version_hash": get_version_hash(),
"doc": "http://fiware.github.io/apps.Wirecloud/restapi/v%s/" % wirecloud.platform.__application_mashup_version__,
"doc": "https://wirecloud.github.io/wirecloud/restapi/v%s/" % wirecloud.platform.__application_mashup_version__,
"userDoc": "https://wirecloud.readthedocs.io/en/%s/" % wirecloud.platform.__version__,
"git_hash": wirecloud.platform.__git_hash__,
"git_dirty": wirecloud.platform.__git_dirty__,
"release_date": wirecloud.platform.__release_date__,
Expand Down

0 comments on commit 8521b2b

Please sign in to comment.