From b44ddc0378ed5c5fb0f947703f008db1815d96de Mon Sep 17 00:00:00 2001 From: Collin Stilwell Date: Thu, 26 Jan 2023 14:39:35 -0500 Subject: [PATCH] Return an :ok on the cookie security setup (#45) --- modules/2-owasp.livemd | 1 - modules/6-cookies.livemd | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/2-owasp.livemd b/modules/2-owasp.livemd index fc90d9f..6f2fc52 100644 --- a/modules/2-owasp.livemd +++ b/modules/2-owasp.livemd @@ -11,7 +11,6 @@ Mix.install([ md5_hash = :crypto.hash(:md5, "users_password") bcrypt_salted_hash = Bcrypt.hash_pwd_salt("users_password") - :ok ``` diff --git a/modules/6-cookies.livemd b/modules/6-cookies.livemd index bd456f4..458fae0 100644 --- a/modules/6-cookies.livemd +++ b/modules/6-cookies.livemd @@ -6,6 +6,7 @@ Mix.install([:phoenix, :plug]) alias Phoenix.ConnTest alias Plug conn = ConnTest.build_conn() +:ok ``` ## Introduction