cwtch/model/constants/experiments.go

15 lines
666 B
Go
Raw Normal View History

2021-12-19 00:15:05 +00:00
package constants
2021-12-19 00:34:07 +00:00
// FileSharingExperiment Allows file sharing
2021-12-19 00:15:05 +00:00
const FileSharingExperiment = "filesharing"
2021-12-19 00:34:07 +00:00
// ImagePreviewsExperiment Causes images (up to ImagePreviewMaxSizeInBytes, from accepted contacts) to auto-dl and preview
2021-12-19 00:15:05 +00:00
// requires FileSharingExperiment to be enabled
const ImagePreviewsExperiment = "filesharing-images"
2021-12-19 00:34:07 +00:00
// ImagePreviewMaxSizeInBytes Files up to this size will be autodownloaded using ImagePreviewsExperiment
2021-12-19 00:15:05 +00:00
const ImagePreviewMaxSizeInBytes = 20971520
2021-12-19 00:34:07 +00:00
// AutoDLFileExts Files with these extensions will be autodownloaded using ImagePreviewsExperiment
var AutoDLFileExts = [...]string{".jpg", ".jpeg", ".png", ".gif", ".webp", ".bmp"}