From e743a9a425ee3197649aa2c4996b8566bf75896d Mon Sep 17 00:00:00 2001 From: Srxr <10549030+srxr@users.noreply.github.com> Date: Tue, 8 Jun 2021 21:22:14 +0800 Subject: Remove proprietary notices about video (#40) * Make content proprietary configurable * Update README * Fixed a few template context bugs Co-authored-by: James Mills --- app/config.go | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'app/config.go') diff --git a/app/config.go b/app/config.go index c93d2a5..e06fde0 100644 --- a/app/config.go +++ b/app/config.go @@ -12,6 +12,7 @@ type Config struct { Thumbnailer *ThumbnailerConfig `json:"thumbnailer"` Transcoder *TranscoderConfig `json:"transcoder"` Feed *FeedConfig `json:"feed"` + Copyright *Copyright `json:"copyright"` } // PathConfig settings for media library path. @@ -56,6 +57,11 @@ type FeedConfig struct { Copyright string `json:"copyright"` } +// Copyright text for App. +type Copyright struct { + Content string `json:"content"` +} + // DefaultConfig returns Config initialized with default values. func DefaultConfig() *Config { return &Config{ @@ -82,6 +88,9 @@ func DefaultConfig() *Config { Feed: &FeedConfig{ ExternalURL: "http://localhost:8000", }, + Copyright: &Copyright{ + Content: "All Content herein Public Domain and User Contributed.", + }, } } -- cgit v1.2.3