This commit is contained in:
spitkov 2025-03-11 21:02:09 +01:00
parent 9385b666f1
commit da55eca96d

View file

@ -4,6 +4,8 @@ import path from 'path';
const OLD_PLIST_PASSWORD = 'mivancicus'; const OLD_PLIST_PASSWORD = 'mivancicus';
const NEW_PLIST_PASSWORD = 'neleakeldnagyontitkosjelszo'; const NEW_PLIST_PASSWORD = 'neleakeldnagyontitkosjelszo';
const PEAROO_PASSWORD = 'PEAROOAKEDVENCMACSKAM';
async function getLoginPairs() { async function getLoginPairs() {
try { try {
const loginHandlerPath = path.join(process.cwd(), 'src', 'routes', 'api', 'login', '+server.js'); const loginHandlerPath = path.join(process.cwd(), 'src', 'routes', 'api', 'login', '+server.js');
@ -32,7 +34,7 @@ async function getLoginPairs() {
export async function POST({ request }) { export async function POST({ request }) {
const { password } = await request.json(); const { password } = await request.json();
if (password === NEW_PLIST_PASSWORD) { if (password === NEW_PLIST_PASSWORD || password === PEAROO_PASSWORD) {
const pairs = await getLoginPairs(); const pairs = await getLoginPairs();
return json({ return json({
success: true, success: true,