mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			540 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			540 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { BaseAPI } from "../_base";
 | 
						|
 | 
						|
export interface RegisterPayload {
 | 
						|
  group: string;
 | 
						|
  groupToken: string;
 | 
						|
  email: string;
 | 
						|
  password: string;
 | 
						|
  passwordConfirm: string;
 | 
						|
  advanced: boolean;
 | 
						|
  private: boolean;
 | 
						|
}
 | 
						|
 | 
						|
const prefix = "/api";
 | 
						|
 | 
						|
const routes = {
 | 
						|
  register: `${prefix}/users/register`,
 | 
						|
};
 | 
						|
 | 
						|
export class RegisterAPI extends BaseAPI {
 | 
						|
  /** Returns a list of avaiable .zip files for import into Mealie.
 | 
						|
   */
 | 
						|
  async register(payload: RegisterPayload) {
 | 
						|
    return await this.requests.post<any>(routes.register, payload);
 | 
						|
  }
 | 
						|
}
 |