changed passwords
This commit is contained in:
parent
766e3ceb6c
commit
73ea9247a6
@ -157,7 +157,7 @@ app.post('/use-bubble', (req, res) => {
|
|||||||
// POST /check-password => verify "mySecretPassword"
|
// POST /check-password => verify "mySecretPassword"
|
||||||
app.post('/check-password', (req, res) => {
|
app.post('/check-password', (req, res) => {
|
||||||
const { password } = req.body;
|
const { password } = req.body;
|
||||||
if (password !== 'mySecretPassword') {
|
if (password !== 'ParentsOnly25') {
|
||||||
return res.status(403).json({ error: 'Incorrect password' });
|
return res.status(403).json({ error: 'Incorrect password' });
|
||||||
}
|
}
|
||||||
res.json({ success: true });
|
res.json({ success: true });
|
||||||
@ -166,7 +166,7 @@ app.post('/check-password', (req, res) => {
|
|||||||
// POST /add-points => append new false items
|
// POST /add-points => append new false items
|
||||||
app.post('/add-points', (req, res) => {
|
app.post('/add-points', (req, res) => {
|
||||||
const { password, category, amount } = req.body;
|
const { password, category, amount } = req.body;
|
||||||
if (password !== 'mySecretPassword') {
|
if (password !== 'ParentsOnly25') {
|
||||||
return res.status(403).json({ error: 'Wrong password' });
|
return res.status(403).json({ error: 'Wrong password' });
|
||||||
}
|
}
|
||||||
if (!['solo', 'together'].includes(category)) {
|
if (!['solo', 'together'].includes(category)) {
|
||||||
@ -300,7 +300,7 @@ app.post('/unsubscribe',(req,res)=>{
|
|||||||
------------------------------------------------------------------ */
|
------------------------------------------------------------------ */
|
||||||
app.post('/admin/login',(req,res)=>{
|
app.post('/admin/login',(req,res)=>{
|
||||||
const { password }=req.body;
|
const { password }=req.body;
|
||||||
if(password!=='adminSecret'){
|
if(password!=='AdminSecret'){
|
||||||
return res.status(403).json({ error:'Wrong admin password' });
|
return res.status(403).json({ error:'Wrong admin password' });
|
||||||
}
|
}
|
||||||
res.json({ success:true });
|
res.json({ success:true });
|
||||||
|
Loading…
x
Reference in New Issue
Block a user