diff options
author | Simponic <loganhunt@simponic.xyz> | 2022-12-20 01:06:18 -0700 |
---|---|---|
committer | Simponic <loganhunt@simponic.xyz> | 2022-12-21 17:21:36 -0700 |
commit | fed5d8a9e7b9500d317f2d8664cfe8ef4138154e (patch) | |
tree | f3d084146c2d410a4c1c8d95398599ceb1c8094f /lib/chessh/auth | |
parent | b18899ffaffad71a2b2f8783d97bcab876ab22a1 (diff) | |
download | chessh-fed5d8a9e7b9500d317f2d8664cfe8ef4138154e.tar.gz chessh-fed5d8a9e7b9500d317f2d8664cfe8ef4138154e.zip |
Add a simple echo server
Diffstat (limited to 'lib/chessh/auth')
-rw-r--r-- | lib/chessh/auth/password.ex | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/chessh/auth/password.ex b/lib/chessh/auth/password.ex index 48a4d62..e2c26d6 100644 --- a/lib/chessh/auth/password.ex +++ b/lib/chessh/auth/password.ex @@ -2,7 +2,6 @@ defmodule Chessh.Auth.PasswordAuthenticator do alias Chessh.Player alias Chessh.Repo use Sshd.PasswordAuthenticator - require Logger def authenticate(username, password) do case Repo.get_by(Player, username: String.Chars.to_string(username)) do |