feat: List domains user can see on homepage

This commit is contained in:
selfhoster selfhoster 2026-09-19 10:00:24 +02:00
commit 8a7e644960
11 changed files with 136 additions and 58 deletions

View file

@ -1,4 +1,6 @@
#[derive(Clone, Debug, Default)]
use serde::Serialize;
#[derive(Clone, Debug, Default, Serialize)]
pub struct Domain {
pub name: String,
}