2021-06-22 23:57:10 +00:00
|
|
|
defmodule Wabanex.Users.Create do
|
2022-04-22 00:49:00 +00:00
|
|
|
@moduledoc """
|
|
|
|
Context for user creation.
|
|
|
|
"""
|
2021-06-22 23:57:10 +00:00
|
|
|
alias Wabanex.{Repo, User}
|
|
|
|
|
|
|
|
def call(params) do
|
|
|
|
params
|
|
|
|
|> User.changeset()
|
|
|
|
|> Repo.insert()
|
|
|
|
end
|
|
|
|
end
|