Zelda Hessler
Zelda Hessler
I myself would love to see examples of how to define your own additional claims. I've gotten so far as implementing the trait for a struct but I'm not sure...
I feel so foolish that I didn't even think to check if you had unit tests. Thanks for pointing me in that direction
I accomplished this by setting a separate handler for just the index file: ```rust fn main() { // ... app.at("/").get(index); app.at("/").serve_dir("static/").unwrap(); // ... } async fn index(_req: tide::Request) -> tide::Result...