tagger schmagger
All checks were successful
fetch npm modules / f0ck the f0cker (push) Successful in 37s

This commit is contained in:
Flummi
2023-05-02 02:06:40 +02:00
parent 4e6b337d4f
commit 61e02953c7
4 changed files with 63 additions and 4 deletions

View File

@@ -107,4 +107,16 @@ export default new class queue {
`;
};
async tagNSFW(itemid) {
return await db`
insert into "tags_assign" ${
db({
item_id: itemid,
tag_id: 2,
user_id: 1
})
}
`;
};
};