mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-29 04:00:09 +00:00
11 lines
267 B
JavaScript
11 lines
267 B
JavaScript
// src/lib/stack-app/email-templates/index.ts
|
|
function adminEmailTemplateUpdateOptionsToCrud(options) {
|
|
return {
|
|
subject: options.subject,
|
|
content: options.content
|
|
};
|
|
}
|
|
export {
|
|
adminEmailTemplateUpdateOptionsToCrud
|
|
};
|
|
//# sourceMappingURL=index.js.map
|