Update to Phoenix 1.6 and chase dependencies

Also bump minimum Elixir to 1.11
This commit is contained in:
Mark Felder 2022-11-02 21:56:43 -04:00
commit 7c64f705f6
17 changed files with 99 additions and 59 deletions

View file

@ -5,6 +5,6 @@
<title><%= @email.subject %></title>
</head>
<body>
<%= render @view_module, @view_template, assigns %>
<%= render Phoenix.Controller.view_module(@conn), Phoenix.Controller.view_template(@conn), assigns %>
</body>
</html>

View file

@ -10,6 +10,6 @@
<base target="_parent">
</head>
<body>
<%= render @view_module, @view_template, assigns %>
<%= render Phoenix.Controller.view_module(@conn), Phoenix.Controller.view_template(@conn), assigns %>
</body>
</html>