summaryrefslogtreecommitdiff
path: root/app/config.go
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-08-07 18:09:39 -0500
committerChristian Cleberg <[email protected]>2026-08-07 18:11:47 -0500
commitddb8aa297962379fa7731032140221ba35f84b50 (patch)
tree8a0d85912ddd41d34f6d4832b0e3c1dcaecbccd0 /app/config.go
parentad54fbcda1ba7f654dc27c06bf22f2628f6c7cf4 (diff)
downloadskunky-art-1.3.8.tar.gz
skunky-art-1.3.8.tar.bz2
skunky-art-1.3.8.zip
feat: add hide-ai option to omit AI-generated deviationsv1.3.8
Adds a hide-ai config flag that drops deviations flagged data.AI from every listing (search, daily, galleries, favourites) in the shared DeviationList loop, analogous to how nsfw gates mature content. The flag is already parsed and shown as a marker, so this is a filter over existing data. Off by default. Closes #15
Diffstat (limited to 'app/config.go')
-rwxr-xr-xapp/config.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/config.go b/app/config.go
index 2faa69d..b790f71 100755
--- a/app/config.go
+++ b/app/config.go
@@ -34,6 +34,7 @@ type config struct {
Cache cacheConfig `json:"cache"`
Proxy bool `json:"proxy"`
Nsfw bool `json:"nsfw"`
+ HideAI bool `json:"hide-ai"`
UserAgent string `json:"user-agent"`
DownloadProxy string `json:"download-proxy"`
StaticPath string `json:"static-path"`