Add possibility to remove client email from sub (#4297)

This commit is contained in:
Vladislav Kasperov
2026-05-13 20:04:17 +03:00
committed by GitHub
parent 5543466fcc
commit 67b098dfd3
18 changed files with 49 additions and 1 deletions
+5
View File
@@ -70,6 +70,7 @@ var defaultValueMap = map[string]string{
"subUpdates": "12",
"subEncrypt": "true",
"subShowInfo": "true",
"subEmailInRemark": "true",
"subURI": "",
"subJsonPath": "/json/",
"subJsonURI": "",
@@ -592,6 +593,10 @@ func (s *SettingService) GetSubShowInfo() (bool, error) {
return s.getBool("subShowInfo")
}
func (s *SettingService) GetSubEmailInRemark() (bool, error) {
return s.getBool("subEmailInRemark")
}
func (s *SettingService) GetPageSize() (int, error) {
return s.getInt("pageSize")
}