initial implementation of local server storage for files

This commit is contained in:
JoramWilander
2015-07-16 08:54:09 -04:00
parent 06bac01e88
commit ada84835ee
5 changed files with 127 additions and 115 deletions

View File

@@ -18,16 +18,18 @@ const (
)
type ServiceSettings struct {
SiteName string
Mode string
AllowTesting bool
UseSSL bool
Port string
Version string
InviteSalt string
PublicLinkSalt string
ResetSalt string
AnalyticsUrl string
SiteName string
Mode string
AllowTesting bool
UseSSL bool
Port string
Version string
InviteSalt string
PublicLinkSalt string
ResetSalt string
AnalyticsUrl string
UseLocalStorage bool
StorageDirectory string
}
type SqlSettings struct {