expire pastes after a month

This commit is contained in:
Lee
2024-11-29 03:38:28 +00:00
parent 892b85ccb4
commit 6db2a01bb3
2 changed files with 3 additions and 2 deletions

View File

@ -18,7 +18,7 @@ import java.net.http.HttpResponse;
@Log4j2(topic = "PasteUtils")
public class PasteUtils {
private static final String PASTE_URL = "https://paste.fascinated.cc/";
private static final String PASTE_UPLOAD_URL = PASTE_URL + "api/upload";
private static final String PASTE_UPLOAD_URL = PASTE_URL + "api/upload?expires=" + 60 * 60 * 24 * 30; // 30 days
private static final HttpClient httpClient = HttpClient.newHttpClient();
/**