mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 15:36:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			347 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			347 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import http from '@/api/http';
 | 
						|
 | 
						|
export default (email: string, recaptchaData?: string): Promise<string> => {
 | 
						|
    return new Promise((resolve, reject) => {
 | 
						|
        http.post('/auth/password', { email, 'g-recaptcha-response': recaptchaData })
 | 
						|
            .then(response => resolve(response.data.status || ''))
 | 
						|
            .catch(reject);
 | 
						|
    });
 | 
						|
};
 |