1
0

feat: add link to domain, change icon

This commit is contained in:
2025-09-02 21:26:46 +02:00
parent aead526ed3
commit 24ecbcafc0
2 changed files with 5 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ select
, 'Mobilizon Instances' as title
, 'social' as icon
, JSON('{"title":"Statistics","link":"/stats", "icon":"chart-dots"}') as menu_item
, JSON('{"link":"mailto:contact@kaihuri.org?subject=report%20an%20instance","title":"Report an instance","icon":"forms"}') as menu_item
, JSON('{"title":"Report an instance","link":"mailto:contact@kaihuri.org?subject=report%20an%20instance","icon":"flag"}') as menu_item
, '' as footer
;
@@ -32,13 +32,14 @@ select
, true as sort
, true as freeze_headers
, true as striped_rows
, 'Url' as markdown
;
select
domain as Url
'[' || domain || '](https://' || domain || '/)' as Url
, name
, version
, slogan
, description
from instances
where failure >= 0
where failure >= 0 -- new, unprocessed candidates are inserted with "failure = -1"
;