1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/common/QueryParams.ts

21 lines
493 B
TypeScript
Raw Normal View History

export const QueryParams = {
gallery: {
random: {
directory: 'dir',
recursive: 'recursive',
orientation: 'orientation',
fromDate: 'fromDate',
toDate: 'toDate',
minResolution: 'fromRes',
maxResolution: 'toRes'
2018-11-30 15:36:42 +01:00
},
photo: 'p',
sharingKey_short: 'sk',
2018-12-09 12:02:02 +01:00
sharingKey_long: 'sharingKey',
searchText: 'searchText',
directory: 'directory',
2018-12-09 12:02:02 +01:00
knownLastModified: 'knownLastModified',
knownLastScanned: 'knownLastScanned'
}
};