File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -44,14 +44,14 @@ func (api *API) appearance(rw http.ResponseWriter, r *http.Request) {
44
44
type appearanceFetcher struct {
45
45
database database.Store
46
46
supportLinks []codersdk.LinkConfig
47
- docsUrl string
47
+ docsURL string
48
48
}
49
49
50
- func newAppearanceFetcher (store database.Store , links []codersdk.LinkConfig , docsUrl string ) agpl.Fetcher {
50
+ func newAppearanceFetcher (store database.Store , links []codersdk.LinkConfig , docsURL string ) agpl.Fetcher {
51
51
return & appearanceFetcher {
52
52
database : store ,
53
53
supportLinks : links ,
54
- docsUrl : docsUrl ,
54
+ docsURL : docsURL ,
55
55
}
56
56
}
57
57
@@ -92,7 +92,7 @@ func (f *appearanceFetcher) Fetch(ctx context.Context) (codersdk.AppearanceConfi
92
92
ApplicationName : applicationName ,
93
93
LogoURL : logoURL ,
94
94
AnnouncementBanners : []codersdk.BannerConfig {},
95
- SupportLinks : agpl .DefaultSupportLinks (f .docsUrl ),
95
+ SupportLinks : agpl .DefaultSupportLinks (f .docsURL ),
96
96
}
97
97
98
98
if announcementBannersJSON != "" {
You can’t perform that action at this time.
0 commit comments