mirror of
https://github.com/cheveguerra/whaticket-community.git
synced 2026-04-18 03:39:29 +00:00
10 lines
237 B
TypeScript
10 lines
237 B
TypeScript
import Mustache from "mustache";
|
|
import Contact from "../models/Contact";
|
|
|
|
export default (body: string, contact: Contact): string => {
|
|
const view = {
|
|
name: contact ? contact.name : ""
|
|
};
|
|
return Mustache.render(body, view);
|
|
};
|