mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-22 20:10:40 +03:00
Fix about me in server
This commit is contained in:
parent
e2e2b5bf59
commit
460a870784
2 changed files with 1 additions and 3 deletions
|
@ -46,8 +46,6 @@ Akf-forum has got an API for AJAX, other clients etc. And, you can learn about A
|
||||||
- extra ratelimits
|
- extra ratelimits
|
||||||
- better edits
|
- better edits
|
||||||
- IP BAN fix
|
- IP BAN fix
|
||||||
- APIDOCS query
|
|
||||||
- app.param for users in API
|
|
||||||
- message counts for API
|
- message counts for API
|
||||||
- ZATEN SİLİNDİ BU KİŞİ & MESAJ
|
- ZATEN SİLİNDİ BU KİŞİ & MESAJ
|
||||||
- delete thread for threads area
|
- delete thread for threads area
|
||||||
|
|
|
@ -60,7 +60,7 @@ app.patch("/:id/", async (req, res) => {
|
||||||
|
|
||||||
if (req.user.id !== member.id && !req.user.admin) return res.error(403, "You have not got permission for this.");
|
if (req.user.id !== member.id && !req.user.admin) return res.error(403, "You have not got permission for this.");
|
||||||
const { avatar, name, about } = req.body;
|
const { avatar, name, about } = req.body;
|
||||||
if (!avatar && !name) return res.error(400, "Missing member informations in request body.");
|
if (!avatar && !name&& !about) return res.error(400, "Missing member informations in request body.");
|
||||||
if (avatar && /https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)/g.test(avatar))
|
if (avatar && /https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)/g.test(avatar))
|
||||||
member.avatar = avatar;
|
member.avatar = avatar;
|
||||||
if (name) {
|
if (name) {
|
||||||
|
|
Loading…
Reference in a new issue