Auth: Session and ACL enhancements #98 #1746

Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
Michael Mayer
2022-09-28 09:01:17 +02:00
parent 8be80aec49
commit f5a8c5a45d
386 changed files with 10403 additions and 5316 deletions

View File

@@ -84,6 +84,9 @@ func restoreAction(ctx *cli.Context) error {
return err
}
conf.RegisterDb()
defer conf.Shutdown()
if restoreIndex {
// If empty, use default backup file name.
if indexFileName == "" {
@@ -132,7 +135,6 @@ func restoreAction(ctx *cli.Context) error {
return err
}
entity.SetDbProvider(conf)
tables := entity.Entities
var cmd *exec.Cmd
@@ -219,7 +221,5 @@ func restoreAction(ctx *cli.Context) error {
log.Infof("restored in %s", elapsed)
conf.Shutdown()
return nil
}