Skip to content

Commit af9af96

Browse files
committed
apparently I had an unstaged file?
1 parent e95fb05 commit af9af96

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

enterprise/coderd/appearance.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ func (api *API) appearance(rw http.ResponseWriter, r *http.Request) {
4444
type appearanceFetcher struct {
4545
database database.Store
4646
supportLinks []codersdk.LinkConfig
47-
docsUrl string
47+
docsURL string
4848
}
4949

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 {
5151
return &appearanceFetcher{
5252
database: store,
5353
supportLinks: links,
54-
docsUrl: docsUrl,
54+
docsURL: docsURL,
5555
}
5656
}
5757

@@ -92,7 +92,7 @@ func (f *appearanceFetcher) Fetch(ctx context.Context) (codersdk.AppearanceConfi
9292
ApplicationName: applicationName,
9393
LogoURL: logoURL,
9494
AnnouncementBanners: []codersdk.BannerConfig{},
95-
SupportLinks: agpl.DefaultSupportLinks(f.docsUrl),
95+
SupportLinks: agpl.DefaultSupportLinks(f.docsURL),
9696
}
9797

9898
if announcementBannersJSON != "" {

0 commit comments

Comments
 (0)