Explorer start

This commit is contained in:
Dominic Villemure
2024-08-29 19:37:26 -04:00
parent ed1abd4a96
commit 2c7248d600
3 changed files with 133 additions and 82 deletions

View File

@@ -21,7 +21,7 @@ const updateScreenSize = () => {
const fetchContents = async ({done}) => {
try {
let uri = `/api/contents/all/?page_size=${pageSize.value}`;
let uri = `/api/contents/followed/?page_size=${pageSize.value}`;
if (last_id !== null) uri = uri + `&last_id=${last_id}`
const response = await client.get(uri);