From 650d61e95f77970626be8bcad2950a07f4da14b4 Mon Sep 17 00:00:00 2001 From: shibao Date: Thu, 13 Apr 2023 23:48:17 -0400 Subject: [PATCH] fix email comment --- lib/memex/accounts/email.ex | 4 ++-- lib/memex_web/{views => }/error_helpers.ex | 0 lib/memex_web/{views => }/html_helpers.ex | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename lib/memex_web/{views => }/error_helpers.ex (100%) rename lib/memex_web/{views => }/html_helpers.ex (100%) diff --git a/lib/memex/accounts/email.ex b/lib/memex/accounts/email.ex index 810659f..9da224b 100644 --- a/lib/memex/accounts/email.ex +++ b/lib/memex/accounts/email.ex @@ -3,8 +3,8 @@ defmodule Memex.Email do Emails that can be sent using Swoosh. You can find the base email templates at - `lib/memex_web/templates/layout/email.html.heex` for html emails and - `lib/memex_web/templates/layout/email.txt.heex` for text emails. + `lib/memex_web/components/layouts/email_html.html.heex` for html emails and + `lib/memex_web/components/layouts/email_text.txt.eex` for text emails. """ import Swoosh.Email diff --git a/lib/memex_web/views/error_helpers.ex b/lib/memex_web/error_helpers.ex similarity index 100% rename from lib/memex_web/views/error_helpers.ex rename to lib/memex_web/error_helpers.ex diff --git a/lib/memex_web/views/html_helpers.ex b/lib/memex_web/html_helpers.ex similarity index 100% rename from lib/memex_web/views/html_helpers.ex rename to lib/memex_web/html_helpers.ex