mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 16:20:02 +00:00
27 lines
653 B
Go
27 lines
653 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/pkg/errors"
|
||
|
log "github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
cli.Add(cliRegistryEntry{
|
||
|
Name: "reset-secrets",
|
||
|
Description: "Remove encrypted data to reset encryption passphrase",
|
||
|
Run: func(args []string) error {
|
||
|
if err := accessService.RemoveAllExtendedTwitchCredentials(); err != nil {
|
||
|
return errors.Wrap(err, "resetting Twitch credentials")
|
||
|
}
|
||
|
log.Info("removed stored Twitch credentials")
|
||
|
|
||
|
if err := db.ResetEncryptedCoreMeta(); err != nil {
|
||
|
return errors.Wrap(err, "resetting encrypted meta entries")
|
||
|
}
|
||
|
log.Info("removed encrypted meta entries")
|
||
|
|
||
|
return nil
|
||
|
},
|
||
|
})
|
||
|
}
|