feat: add organization email templates management

- Created a new SQL migration to establish the organization_email_templates table with necessary fields and default templates for common events.
- Implemented CRUD operations for email templates in Rust, including listing, creating, updating, and deleting templates.
- Developed a React component for managing email templates, allowing users to create, edit, and delete templates with a user-friendly interface.
This commit is contained in:
2026-04-15 10:26:44 -04:00
parent e1d5975e57
commit 6f8b723d64
18 changed files with 997 additions and 36 deletions
+2
View File
@@ -81,6 +81,8 @@ if [ "$FAST_MODE" == "false" ]; then
install_pkg "jq"
install_pkg "build-essential"
install_pkg "docker.io"
install_pkg "pandoc"
install_pkg "texlive-xetex"
if ! docker compose version &> /dev/null; then
install_pkg "docker-compose-v2"
fi