Added patch to reset privacy settings
This commit is contained in:
parent
025e90439d
commit
ba3a754d15
19
patches/user-privacy-location/user-privacy-location.go
Normal file
19
patches/user-privacy-location/user-privacy-location.go
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/animenotifier/arn"
|
||||||
|
"github.com/fatih/color"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
color.Yellow("Resetting location privacy to enabled")
|
||||||
|
|
||||||
|
defer color.Green("Finished.")
|
||||||
|
defer arn.Node.Close()
|
||||||
|
|
||||||
|
for user := range arn.StreamUsers() {
|
||||||
|
settings := user.Settings()
|
||||||
|
settings.Privacy.ShowLocation = true
|
||||||
|
settings.Save()
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user