fix tests

This commit is contained in:
2022-01-22 20:44:38 -05:00
committed by oliviasculley
parent a64d92a6cf
commit 728728a5a4
17 changed files with 57 additions and 10 deletions

View File

@ -1,4 +1,8 @@
defmodule Lokal.Accounts.User do
@moduledoc """
Schema for a registered user
"""
use Ecto.Schema
import Ecto.Changeset

View File

@ -1,4 +1,8 @@
defmodule Lokal.Accounts.UserNotifier do
@moduledoc """
Contains templates and messages for user messages
"""
# For simplicity, this module simply logs messages to the terminal.
# You should replace it by a proper email or notification tool, such as:
#

View File

@ -1,4 +1,8 @@
defmodule Lokal.Accounts.UserToken do
@moduledoc """
Schema for a user's session token
"""
use Ecto.Schema
import Ecto.Query