start creating branding

This commit is contained in:
Henrique Dias 2018-07-08 08:38:31 +01:00
parent ec2e8d1f54
commit 05f7743878

View File

@ -556,3 +556,13 @@ func GenerateRandomBytes(n int) ([]byte, error) {
return b, nil return b, nil
} }
type Branding struct {
Name string
ExternalLinks bool
}
var DefaultBranding = Branding{
Name: "File Browser",
ExternalLinks: true,
}