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