Better reset

This commit is contained in:
Akif9748 2022-09-17 15:19:41 +03:00
parent 3bf0b75a7f
commit 49dbe2d73d
3 changed files with 4 additions and 3 deletions

View File

@ -7,7 +7,7 @@ A Node.js based forum software.
- Run `npm start` for run it.
### Extra
Run `node util/reset` to **reset the database**, and run `node util/admin` for give admin perms to first member.
Run `node util/reset` to **reset the database** for duplicate key errors, and run `node util/admin` for give admin perms to first member.
Edit `config.json` for default themes of users, and forum name...
## API
@ -44,6 +44,7 @@ Akf-forum has got an API for AJAX (fetch), other clients etc. And, you can learn
- char limits in config.json
- select -id for api
- summary (∆) for ips of users in user page
- admin list in admin panel.
## Major Version History
- V4: Caching

View File

@ -13,7 +13,7 @@ app.post("/", rateLimit({
req.session.userID = null;
let { username = null, password: body_pass = null, about } = req.body;
let { username, password: body_pass, about } = req.body;
if (!username || !body_pass) return res.error(400, "You forgot entering some values");
if (username.length < 3 || username.length > 25) return res.error(400, "Username must be between 3 - 25 characters");

View File

@ -5,4 +5,4 @@ mongoose.connect(process.env.MONGO_DB_URL, () => console.log("Database is connec
const Models = require("../models");
Object.values(Models).forEach(model => model.deleteMany({}).then(console.log));
Object.values(Models).forEach(model => model.collection.drop().then(console.log));