meeseeks bookmarks; also bookmarks

This commit is contained in:
Rüdiger Diedrich
2024-08-12 15:46:13 +02:00
parent 2ab3f7ba7f
commit fede012e44
6 changed files with 114 additions and 50 deletions

View File

@ -55,8 +55,8 @@ defmodule SomethingErlang.Grover do
end
@impl true
def handle_call({:show_bookmarks, _page_number}, _from, state) do
bookmarks = AwfulApi.bookmarks(state.user)
def handle_call({:show_bookmarks, page_number}, _from, state) do
bookmarks = AwfulApi.bookmarks(page_number, state.user)
{:reply, bookmarks, state}
end