feat: add email blacklist filtering
This commit is contained in:
@@ -27,3 +27,8 @@ app.delete('/setting/deleteBackground', async (c) => {
|
||||
return c.json(result.ok());
|
||||
});
|
||||
|
||||
app.put('/setting/setBlacklist', async (c) => {
|
||||
const setting = await settingService.setBlacklist(c, await c.req.json());
|
||||
return c.json(result.ok(setting));
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user