tag create form, misc tweaks

This commit is contained in:
2026-03-22 23:51:23 +01:00
parent 4a4e3872da
commit acdd89e26f
2 changed files with 34 additions and 4 deletions

View File

@@ -22,6 +22,7 @@ pub fn pages() -> Router {
.route("/users", get(users::page))
.route("/users/{id}", get(users::profile::page))
.route("/tags", get(tags::page))
.route("/tags/create", post(tags::create))
.route("/persons", get(persons::page))
.route("/persons/create", post(persons::create))
}