plug_indie/lib/test_handler.ex

41 lines
679 B
Elixir
Raw Normal View History

defmodule TestHandler do
2024-11-29 09:42:27 +00:00
@behaviour PlugIndie.HandlerBehaviour
@impl true
2024-11-29 09:42:27 +00:00
def handle_create(_type, %PlugIndie.Post{} = properties, _access_token) do
case properties.type do
:note ->
2024-11-29 09:43:53 +00:00
# Create a new note in the database here
{:ok, :created, "/notes/4711"}
end
end
@impl true
def handle_update(_, _, _, _, _) do
end
@impl true
def handle_undelete(_, _) do
end
@impl true
def handle_delete(_, _) do
end
@impl true
def handle_syndicate_to_query(_) do
end
@impl true
def handle_source_query(_, _, _) do
end
@impl true
def handle_config_query(_) do
end
@impl true
def handle_media(_, _) do
end
end