mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 04:14:39 +03:00
Multiple image URLs (#4000)
* Backend changes - ported from scene impl * Front end changes * Refactor URL mutation code
This commit is contained in:
@@ -13,6 +13,7 @@ var (
|
||||
imagesTagsJoinTable = goqu.T(imagesTagsTable)
|
||||
performersImagesJoinTable = goqu.T(performersImagesTable)
|
||||
imagesFilesJoinTable = goqu.T(imagesFilesTable)
|
||||
imagesURLsJoinTable = goqu.T(imagesURLsTable)
|
||||
|
||||
galleriesFilesJoinTable = goqu.T(galleriesFilesTable)
|
||||
galleriesTagsJoinTable = goqu.T(galleriesTagsTable)
|
||||
@@ -70,6 +71,14 @@ var (
|
||||
},
|
||||
fkColumn: performersImagesJoinTable.Col(performerIDColumn),
|
||||
}
|
||||
|
||||
imagesURLsTableMgr = &orderedValueTable[string]{
|
||||
table: table{
|
||||
table: imagesURLsJoinTable,
|
||||
idColumn: imagesURLsJoinTable.Col(imageIDColumn),
|
||||
},
|
||||
valueColumn: imagesURLsJoinTable.Col(imageURLColumn),
|
||||
}
|
||||
)
|
||||
|
||||
var (
|
||||
|
||||
Reference in New Issue
Block a user