Added configurable HTTP Basic Auth.

This commit is contained in:
Patrick Fairbank
2015-08-22 23:33:38 -07:00
parent bd098de716
commit 5e49142ef0
23 changed files with 305 additions and 4 deletions

View File

@@ -20,7 +20,11 @@ CREATE TABLE event_settings (
appassword VARCHAR(255),
switchaddress VARCHAR(255),
switchpassword VARCHAR(255),
bandwidthmonitoringenabled bool
bandwidthmonitoringenabled bool,
tbadownloadenabled bool,
tbaawardsdownloadenabled bool,
adminpassword VARCHAR(255),
readerpassword VARCHAR(255)
);
-- +goose Down

View File

@@ -1,3 +0,0 @@
-- +goose Up
ALTER TABLE event_settings ADD COLUMN tbadownloadenabled BOOLEAN;
ALTER TABLE event_settings ADD COLUMN tbaawardsdownloadenabled BOOLEAN;