Prepends https protocol to the inmem org logo url (#685)

This commit is contained in:
Mike Stone 2016-12-22 10:03:20 -05:00 committed by Victor Vrantchan
parent d653cdf281
commit a84c40061a

View file

@ -512,7 +512,7 @@ func (d *Datastore) createDevHosts() error {
func (d *Datastore) createDevOrgInfo() error {
devOrgInfo := &kolide.AppConfig{
OrgName: "Kolide",
OrgLogoURL: fmt.Sprintf("%s/assets/images/kolide-logo.svg", d.config.Server.Address),
OrgLogoURL: fmt.Sprintf("https://%s/assets/images/kolide-logo.svg", d.config.Server.Address),
SMTPPort: 587,
SMTPAuthenticationType: kolide.AuthTypeUserNamePassword,
SMTPEnableTLS: true,