1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-28 07:56:37 +01:00

feat: implement ability to disable avatars (#4091)

Co-authored-by: uponminiature <226739065+uponminiature@users.noreply.github.com>
This commit is contained in:
uponminiature
2025-08-29 22:20:03 +01:00
committed by GitHub
parent ae083e955a
commit 6df66dade9
7 changed files with 34 additions and 21 deletions

View File

@@ -198,9 +198,10 @@ func createServer(args cli.Args, hostService web.HostService) *http.Server {
Authorizer: authorizer,
TTL: authTTL,
},
EnableActions: args.EnableActions,
EnableShell: args.EnableShell,
Labels: args.Filter,
EnableActions: args.EnableActions,
EnableShell: args.EnableShell,
DisableAvatars: args.DisableAvatars,
Labels: args.Filter,
}
assets, err := fs.Sub(content, "dist")