From b25ff924c8f78f471e1c3078e7bb8a22c49a0a43 Mon Sep 17 00:00:00 2001 From: "Lightlist.io" Date: Tue, 31 Mar 2015 19:41:31 -0700 Subject: [PATCH] Adding server.lightlist.io to hardcoded ServerList.java --- client/src/main/java/lighthouse/ServerList.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/src/main/java/lighthouse/ServerList.java b/client/src/main/java/lighthouse/ServerList.java index 6cfa19b..8599458 100644 --- a/client/src/main/java/lighthouse/ServerList.java +++ b/client/src/main/java/lighthouse/ServerList.java @@ -35,7 +35,8 @@ public Entry(String hostName, String submitAddress, String instructions, SubmitT new Entry("vinumeris.com", "project-hosting@vinumeris.com", tr("Submission via email. Project must be legal under Swiss and UK law."), SubmitType.EMAIL), new Entry("lighthouse.onetapsw.com", "lighthouse-projects@onetapsw.com", tr("Submission via email. Project must be legal under US law."), SubmitType.EMAIL), new Entry("lighthouseprojects.io", "projects@lighthouseprojects.io", tr("Submission via email. Project must be legal under New Zealand law."), SubmitType.EMAIL), - new Entry("lighthouse.bitseattle.com", "https://lighthouse.bitseattle.com/lighthouse-projects/upload/", tr("Submission via the web. Project must be legal under US law."), SubmitType.WEB) + new Entry("lighthouse.bitseattle.com", "https://lighthouse.bitseattle.com/lighthouse-projects/upload/", tr("Submission via the web. Project must be legal under US law."), SubmitType.WEB), + new Entry("server.lightlist.io", "https://www.lightlist.io/projects/new", tr("Submission via the web. Project must be legal under US law."), SubmitType.WEB) ); public static final Map hostnameToServer;