From 7f116952f5f83888052fb7ba3238555f9a2c30f3 Mon Sep 17 00:00:00 2001 From: Inhji Date: Fri, 29 Nov 2024 10:43:53 +0100 Subject: [PATCH] cleanup --- lib/test_handler.ex | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/test_handler.ex b/lib/test_handler.ex index 6a898f3..2e2e540 100644 --- a/lib/test_handler.ex +++ b/lib/test_handler.ex @@ -5,10 +5,8 @@ defmodule TestHandler do def handle_create(_type, %PlugIndie.Post{} = properties, _access_token) do case properties.type do :note -> + # Create a new note in the database here {:ok, :created, "/notes/4711"} - - :bookmark -> - {:ok, :created, "/bookmarks/4711"} end end