(self, id, limit)
| 104 | await self.col.update_one({'_id': int(id)}, {'$set': {'usertype': type}}) |
| 105 | |
| 106 | async def set_uploadlimit(self, id, limit): |
| 107 | await self.col.update_one({'_id': int(id)}, {'$set': {'uploadlimit': limit}}) |
| 108 | |
| 109 | async def set_reset_dailylimit(self, id, date): |
| 110 | await self.col.update_one({'_id': int(id)}, {'$set': {'daily': date}}) |
nothing calls this directly
no outgoing calls
no test coverage detected