mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	fix: lint (#12761)
This commit is contained in:
		
							parent
							
								
									f743cba26b
								
							
						
					
					
						commit
						6f65091cef
					
				
					 1 changed files with 4 additions and 2 deletions
				
			
		| 
						 | 
					@ -7,7 +7,6 @@ import { URLSearchParams } from 'node:url';
 | 
				
			||||||
import * as nodemailer from 'nodemailer';
 | 
					import * as nodemailer from 'nodemailer';
 | 
				
			||||||
import { Inject, Injectable } from '@nestjs/common';
 | 
					import { Inject, Injectable } from '@nestjs/common';
 | 
				
			||||||
import { validate as validateEmail } from 'deep-email-validator';
 | 
					import { validate as validateEmail } from 'deep-email-validator';
 | 
				
			||||||
import { SubOutputFormat } from 'deep-email-validator/dist/output/output.js';
 | 
					 | 
				
			||||||
import { MetaService } from '@/core/MetaService.js';
 | 
					import { MetaService } from '@/core/MetaService.js';
 | 
				
			||||||
import { UtilityService } from '@/core/UtilityService.js';
 | 
					import { UtilityService } from '@/core/UtilityService.js';
 | 
				
			||||||
import { DI } from '@/di-symbols.js';
 | 
					import { DI } from '@/di-symbols.js';
 | 
				
			||||||
| 
						 | 
					@ -166,7 +165,10 @@ export class EmailService {
 | 
				
			||||||
			email: emailAddress,
 | 
								email: emailAddress,
 | 
				
			||||||
		});
 | 
							});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		let validated;
 | 
							let validated: {
 | 
				
			||||||
 | 
								valid: boolean,
 | 
				
			||||||
 | 
								reason?: string | null,
 | 
				
			||||||
 | 
							};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		if (meta.enableActiveEmailValidation) {
 | 
							if (meta.enableActiveEmailValidation) {
 | 
				
			||||||
			if (meta.enableVerifymailApi && meta.verifymailAuthKey != null) {
 | 
								if (meta.enableVerifymailApi && meta.verifymailAuthKey != null) {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue