UX: Add batch edit dialog and API endpoints #271 #5324

Signed-off-by: Michael Mayer <michael@photoprism.app>
Co-authored-by: Michael Mayer <michael@photoprism.app>
Co-authored-by: graciousgrey <theresagresch@gmail.com>
This commit is contained in:
Ömer Duran
2025-11-19 11:20:34 +01:00
committed by GitHub
parent 18806935fd
commit 1e00d1f52e
173 changed files with 13034 additions and 1090 deletions

View File

@@ -25,7 +25,7 @@ func TestFirstOrCreateFileSync(t *testing.T) {
result := FirstOrCreateFileSync(fileSync)
if result == nil {
t.Fatal("result should not be nil")
t.Fatal("result must not be nil")
}
if result.FileID != fileSync.FileID {
@@ -41,7 +41,7 @@ func TestFirstOrCreateFileSync(t *testing.T) {
result := FirstOrCreateFileSync(fileSync)
if result == nil {
t.Fatal("result share should not be nil")
t.Fatal("result share must not be nil")
}
if result.FileID != fileSync.FileID {