Handle trying to create a category if not loggedin

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2018-11-07 08:34:25 +01:00
parent 07b9676f0d
commit 74bc21fa2c
2 changed files with 23 additions and 0 deletions

View File

@@ -34,4 +34,8 @@ defmodule MobilizonWeb.Resolvers.Category do
{:error, errors}
end
end
def create_category(_parent, %{title: title, picture: picture, description: description}, %{}) do
{:error, "You are not allowed to create a category if not connected"}
end
end