From 05f7743878941b4162d155def3b982bc32c25cdb Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Sun, 8 Jul 2018 08:38:31 +0100 Subject: [PATCH] start creating branding --- filebrowser.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/filebrowser.go b/filebrowser.go index 1b23e24a..7b6f8ec0 100644 --- a/filebrowser.go +++ b/filebrowser.go @@ -556,3 +556,13 @@ func GenerateRandomBytes(n int) ([]byte, error) { return b, nil } + +type Branding struct { + Name string + ExternalLinks bool +} + +var DefaultBranding = Branding{ + Name: "File Browser", + ExternalLinks: true, +}