mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-31 13:34:12 +00:00 
			
		
		
		
	Delete suspend.js
This commit is contained in:
		
							parent
							
								
									9235f72a2e
								
							
						
					
					
						commit
						470e48c0a5
					
				
					 1 changed files with 0 additions and 23 deletions
				
			
		|  | @ -1,23 +0,0 @@ | |||
| const mongo = require('mongodb'); | ||||
| const User = require('../built/models/user').default; | ||||
| 
 | ||||
| const args = process.argv.slice(2); | ||||
| 
 | ||||
| const user = args[0]; | ||||
| 
 | ||||
| const q = user.startsWith('@') ? { | ||||
| 	username: user.split('@')[1], | ||||
| 	host: user.split('@')[2] || null | ||||
| } : { _id: new mongo.ObjectID(user) }; | ||||
| 
 | ||||
| console.log(`Suspending ${user}...`); | ||||
| 
 | ||||
| User.update(q, { | ||||
| 	$set: { | ||||
| 		isSuspended: true | ||||
| 	} | ||||
| }).then(() => { | ||||
| 	console.log(`Suspended ${user}`); | ||||
| }, e => { | ||||
| 	console.error(e); | ||||
| }); | ||||
		Loading…
	
	Add table
		
		Reference in a new issue