fix show toppingset unmatch index

This commit is contained in:
pakintada@gmail.com 2024-01-21 15:18:33 +07:00
parent d1330e4f84
commit ecd88b2e27
6 changed files with 218 additions and 76 deletions

View file

@ -274,4 +274,14 @@ export class RecipeService {
}
);
}
async getRawRecipeOfProductCode(country: string, filename: string, productCode: string): Promise<Observable<{}>> {
return this._httpClient.get<{}>(
environment.api + '/recipes/' + country + '/' + filename + '/' + productCode + '/raw_full',
{
withCredentials: true,
responseType: 'json',
}
);
}
}