undorito
This commit is contained in:
parent
da55eca96d
commit
c77c9ba501
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||||
|
|
Loading…
Add table
Reference in a new issue