Better file names
This commit is contained in:
		
							parent
							
								
									b9782397c2
								
							
						
					
					
						commit
						d25bd876cb
					
				
					 4 changed files with 4 additions and 4 deletions
				
			
		| 
						 | 
				
			
			@ -80,7 +80,7 @@ export async function exportBlocking(job: bq.Job, done: any): Promise<void> {
 | 
			
		|||
	stream.end();
 | 
			
		||||
	logger.succ(`Exported to: ${path}`);
 | 
			
		||||
 | 
			
		||||
	const fileName = dateFormat(new Date(), 'blocking-yyyy-mm-dd-HH-MM-ss') + '.csv';
 | 
			
		||||
	const fileName = 'blocking-' + dateFormat(new Date(), 'yyyy-mm-dd-HH-MM-ss') + '.csv';
 | 
			
		||||
	const driveFile = await addFile(user, path, fileName);
 | 
			
		||||
 | 
			
		||||
	logger.succ(`Exported to: ${driveFile._id}`);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -80,7 +80,7 @@ export async function exportFollowing(job: bq.Job, done: any): Promise<void> {
 | 
			
		|||
	stream.end();
 | 
			
		||||
	logger.succ(`Exported to: ${path}`);
 | 
			
		||||
 | 
			
		||||
	const fileName = dateFormat(new Date(), 'following-yyyy-mm-dd-HH-MM-ss') + '.csv';
 | 
			
		||||
	const fileName = 'following-' + dateFormat(new Date(), 'yyyy-mm-dd-HH-MM-ss') + '.csv';
 | 
			
		||||
	const driveFile = await addFile(user, path, fileName);
 | 
			
		||||
 | 
			
		||||
	logger.succ(`Exported to: ${driveFile._id}`);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -80,7 +80,7 @@ export async function exportMute(job: bq.Job, done: any): Promise<void> {
 | 
			
		|||
	stream.end();
 | 
			
		||||
	logger.succ(`Exported to: ${path}`);
 | 
			
		||||
 | 
			
		||||
	const fileName = dateFormat(new Date(), 'mute-yyyy-mm-dd-HH-MM-ss') + '.csv';
 | 
			
		||||
	const fileName = 'mute-' + dateFormat(new Date(), 'yyyy-mm-dd-HH-MM-ss') + '.csv';
 | 
			
		||||
	const driveFile = await addFile(user, path, fileName);
 | 
			
		||||
 | 
			
		||||
	logger.succ(`Exported to: ${driveFile._id}`);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -100,7 +100,7 @@ export async function exportNotes(job: bq.Job, done: any): Promise<void> {
 | 
			
		|||
	stream.end();
 | 
			
		||||
	logger.succ(`Exported to: ${path}`);
 | 
			
		||||
 | 
			
		||||
	const fileName = dateFormat(new Date(), 'yyyy-mm-dd-HH-MM-ss') + '.json';
 | 
			
		||||
	const fileName = 'notes' + dateFormat(new Date(), 'yyyy-mm-dd-HH-MM-ss') + '.json';
 | 
			
		||||
	const driveFile = await addFile(user, path, fileName);
 | 
			
		||||
 | 
			
		||||
	logger.succ(`Exported to: ${driveFile._id}`);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue