feat: password invalidate sessions (#30125)

This commit is contained in:
Jason Rasmussen 2026-07-22 12:09:05 -04:00 committed by GitHub
parent 23778551f7
commit b9f6c4aaf2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 47 additions and 11 deletions

View file

@ -65,6 +65,10 @@ describe(`immich-admin`, () => {
child.stdout.on('data', (chunk) => {
data += chunk;
if (data.includes('Please choose a new password (optional)')) {
child.stdin.write('\n');
}
if (data.includes('Invalidate existing sessions?')) {
child.stdin.end('\n');
}
});