This commit is contained in:
spitkov 2025-03-11 21:40:02 +01:00
parent da55eca96d
commit c77c9ba501

View file

@ -34,14 +34,14 @@ 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 || password === PEAROO_PASSWORD) { if (password === NEW_PLIST_PASSWORD ) {
const pairs = await getLoginPairs(); const pairs = await getLoginPairs();
return json({ return json({
success: true, success: true,
pairs pairs
}); });
} }
else if (password === OLD_PLIST_PASSWORD) { else if (password === OLD_PLIST_PASSWORD || password === PEAROO_PASSWORD) {
const pairs = await getLoginPairs(); const pairs = await getLoginPairs();
return json({ return json({
success: true, success: true,