增加图片自定义额外参数功能

This commit is contained in:
WispX
2020-03-17 17:50:46 +08:00
parent dcc14a1493
commit e1703f1146
2 changed files with 6 additions and 2 deletions
+4
View File
@@ -10,3 +10,7 @@ password = {password}
hostport = {hostport}
charset = utf8mb4
prefix = lsky_
[system]
intercept_salacity = false
url_query = ''
+2 -2
View File
@@ -8,7 +8,7 @@
return [
// 违规图片是否直接拦截
'intercept_salacity' => false,
'intercept_salacity' => env('system.intercept_salacity', false),
// 图片链接额外参数(例: ?test=123)
'url_query' => ''
'url_query' => env('system.url_query', '')
];