alist/internal/conf/const.go

59 lines
1.1 KiB
Go
Raw Normal View History

2022-06-06 13:48:53 +00:00
package conf
2022-06-27 06:32:21 +00:00
const (
TypeString = "string"
TypeSelect = "select"
TypeBool = "bool"
TypeText = "text"
TypeNumber = "number"
)
2022-06-29 08:08:55 +00:00
const (
// site
VERSION = "version"
2022-07-02 08:43:07 +00:00
ApiUrl = "api_url"
BasePath = "base_path"
SiteTitle = "site_title"
2022-07-12 06:03:03 +00:00
Logo = "logo"
Favicon = "favicon"
Announcement = "announcement"
IconColor = "icon_color"
// preview
TextTypes = "text_types"
AudioTypes = "audio_types"
VideoTypes = "video_types"
2022-08-07 16:51:05 +00:00
ImageTypes = "image_types"
OfficeTypes = "office_types"
ProxyTypes = "proxy_types"
2022-08-08 05:03:34 +00:00
OfficeViewers = "office_viewers"
PdfViewers = "pdf_viewers"
AudioAutoplay = "audio_autoplay"
VideoAutoplay = "video_autoplay"
// global
2022-06-29 08:08:55 +00:00
HideFiles = "hide_files"
GlobalReadme = "global_readme"
CustomizeHead = "customize_head"
CustomizeBody = "customize_body"
LinkExpiration = "link_expiration"
PrivacyRegs = "privacy_regs"
// aria2
Aria2Uri = "aria2_uri"
Aria2Secret = "aria2_secret"
// single
Token = "token"
2022-06-29 08:08:55 +00:00
)
2022-08-07 16:51:05 +00:00
const (
UNKNOWN = iota
FOLDER
OFFICE
VIDEO
AUDIO
TEXT
IMAGE
)