feat: tag authors of shared links on mastodon if possible
This commit is contained in:
parent
8ea14491b9
commit
2d1cdc54f6
7 changed files with 17 additions and 37 deletions
|
@ -28,7 +28,7 @@ const fetchAllLinks = async () => {
|
|||
while (fetchMore) {
|
||||
const { data, error } = await supabase
|
||||
.from('links')
|
||||
.select('*, authors (name, url)')
|
||||
.select('*, authors (name, url, mastodon)')
|
||||
.order('date', { ascending: false })
|
||||
.range(page * PAGE_SIZE, (page + 1) * PAGE_SIZE - 1)
|
||||
|
||||
|
|
Reference in a new issue