1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-11-24 11:14:51 +00:00

GitHub Saver: Make server URL configurable

This commit is contained in:
Jermolene
2019-04-15 21:30:59 +01:00
parent b32a5aa9af
commit 25c0ebb523
3 changed files with 4 additions and 1 deletions

View File

@@ -29,6 +29,7 @@ GitHubSaver.prototype.save = function(text,method,callback) {
path = this.wiki.getTiddlerText("$:/GitHub/Path"),
filename = this.wiki.getTiddlerText("$:/GitHub/Filename"),
branch = this.wiki.getTiddlerText("$:/GitHub/Branch") || "master",
endpoint = this.wiki.getTiddlerText("$:/GitHub/Url") || "https://api.github.com",
headers = {
"Accept": "application/vnd.github.v3+json",
"Content-Type": "application/json;charset=UTF-8",
@@ -46,7 +47,7 @@ GitHubSaver.prototype.save = function(text,method,callback) {
path = path + "/";
}
// Compose the base URI
var uri = "https://api.github.com/repos/" + repo + "/contents" + path;
var uri = endpoint + "/repos/" + repo + "/contents" + path;
// Perform a get request to get the details (inc shas) of files in the same path as our file
$tw.utils.httpRequest({
url: uri,