Add user login to admin interface

This commit is contained in:
Tom Wiesing 2022-11-23 16:57:09 +01:00
parent dbe494751a
commit 82bfc15057
No known key found for this signature in database
15 changed files with 256 additions and 79 deletions

View file

@ -96,5 +96,10 @@ func (i info) Run(context wisski_distillery.Context) error {
context.Printf("- %s (%d bytes)\n", name, len(data))
})
context.Printf("Users: (count %d)\n", len(info.Users))
for _, user := range info.Users {
context.Printf("- %s\n", user)
}
return nil
}