mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
This PR aims to close #14253 We keep the default behavior using the Coder logo if there's no logo set. Otherwise we want to use the logo based on the URL set in appearance. --------- Co-authored-by: defelmnq <yvincent@coder.com>
11 lines
339 B
Go
11 lines
339 B
Go
package dispatch_test
|
|
|
|
func helpers() map[string]any {
|
|
return map[string]any{
|
|
"base_url": func() string { return "http://test.com" },
|
|
"current_year": func() string { return "2024" },
|
|
"logo_url": func() string { return "https://coder.com/coder-logo-horizontal.png" },
|
|
"app_name": func() string { return "Coder" },
|
|
}
|
|
}
|