summaryrefslogtreecommitdiff
path: root/system/admin/upload/upload.go
AgeCommit message (Collapse)Author
2019-11-29upload: early return when no files to uploadSteve Manuel
2017-04-29fmt bytes to readable and update setupload logic to allow editsSteve Manuel
2017-04-25adding support for file upload type and API handler to fetch file infoSteve Manuel
2017-04-17fix ineffassign and spelling errorsSteve Manuel
2017-04-17package documentation for godocSteve Manuel
2017-03-20adding filename normalization and sanitization for file uploadsSteve Manuel
2017-01-16[core] Adding toggle for CORS, GZIP in admin/cms configuration (#30)Steve
This PR enables admins to disable/enable CORS and GZIP from within the admin CMS configuration page. Both are enabled by default. Note: currently, the GZIP implementation is 100% on the fly, for every qualifying API endpoint request. This could add significant CPU usage, but dramatically decreases bandwidth. Will be considering other better implementations, but for now YMMV. Possible optimizations: - pooling gzip Writers vs. creating a new one for each response - caching gzipped responses (in memory? on disk?) - enforcing size threshold (only gzip content larger than N bytes)
2017-01-10adding initial support for third-party addons and the basic framework for ↵Steve Manuel
how they are registered by the system
2016-11-02adding proper padding on month int to dir name for file uploadSteve Manuel
2016-11-02adding proper padding on month int to dir name for file uploadSteve Manuel
2016-10-29renaming and moving File upload logic into own packageSteve Manuel