Add the logout for the API.
continuous-integration/drone/push Build is failing

This commit is contained in:
2024-08-31 14:47:45 +03:00
parent 2f4fc790be
commit 3eb12de52c
9 changed files with 94 additions and 6 deletions
+10
View File
@@ -0,0 +1,10 @@
defmodule LinkShortener.Factories.UserFactory do
use ExMachina
def user_factory do
%{
email: sequence(:email, &"user-#{&1}@mail.com"),
password: "some password"
}
end
end