Re-add paste service

And move issue template
This commit is contained in:
NotMyFault 2019-05-01 21:42:18 +02:00
parent 68e7573c21
commit d9914d7f0a
4 changed files with 6 additions and 5 deletions

View File

@ -23,7 +23,7 @@ public final class IncendoPaster {
/**
* Upload service URL
*/
public static final String UPLOAD_PATH = "https://incendo.org/paste/upload";
public static final String UPLOAD_PATH = "https://athion.net/ISPaster/paste/upload";
/**
* Valid paste applications
*/
@ -238,7 +238,7 @@ public final class IncendoPaster {
if (jsonObject.has("created")) {
final String pasteId = jsonObject.get("paste_id").getAsString();
return String.format("https://incendo.org/paste/view/%s", pasteId);
return String.format("https://athion.net/ISPaster/paste/view/%s", pasteId);
} else {
throw new IOException(String.format("Failed to upload files: %s",
jsonObject.get("response").getAsString()));

View File

@ -108,7 +108,7 @@ public class WorldEditCommands {
@Command(
aliases = {"debugpaste"},
usage = "",
desc = "Upload latest.log, config.yml, message.yml and your commands.yml to https://incendo.org",
desc = "Upload latest.log, config.yml, message.yml and your commands.yml to https://athion.net/ISPaster/paste",
min = 0,
max = 0
)

View File

@ -25,7 +25,7 @@ public final class IncendoPaste implements Paster{
/**
* Upload service URL
*/
public static final String UPLOAD_PATH = "https://incendo.org/paste/upload";
public static final String UPLOAD_PATH = "https://athion.net/ISPaster/paste/upload";
/**
* Valid paste applications
*/
@ -242,6 +242,7 @@ public final class IncendoPaste implements Paster{
}
incendoPaster.addFile(new PasteFile("config.yml", readFile(new File(Fawe.imp().getDirectory(), "config.yml"))));
incendoPaster.addFile(new PasteFile("config-legacy.yml", readFile(new File(Fawe.imp().getDirectory(), "config-legacy.yml"))));
incendoPaster.addFile(new PasteFile("message.yml", readFile(new File(Fawe.imp().getDirectory(), "message.yml"))));
incendoPaster.addFile(new PasteFile("commands.yml", readFile(new File(Fawe.imp().getDirectory(), "commands.yml"))));
@ -255,7 +256,7 @@ public final class IncendoPaste implements Paster{
if (jsonObject.has("created")) {
final String pasteId = jsonObject.get("paste_id").getAsString();
return String.format("https://incendo.org/paste/view/%s", pasteId);
return String.format("https://athion.net/ISPaster/paste/view/%s", pasteId);
} else {
throw new IOException(String.format("Failed to upload files: %s",
jsonObject.get("response").getAsString()));