Admin API to change in-memory streaming key. Closes #212

This commit is contained in:
Gabe Kangas
2020-10-01 23:17:27 -07:00
parent 7b64fc7c30
commit 48c8cf5ed2
4 changed files with 47 additions and 5 deletions

View File

@@ -27,7 +27,7 @@ func badRequestHandler(w http.ResponseWriter, err error) {
json.NewEncoder(w).Encode(j{"error": err.Error()})
}
func writeSimpleResponse(w http.ResponseWriter, success bool, message string) {
func WriteSimpleResponse(w http.ResponseWriter, success bool, message string) {
response := models.BaseAPIResponse{
Success: success,
Message: message,