1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-11-24 08:42:24 +02:00
pigallery2/common/QueryParams.ts
2019-02-15 11:47:09 -05:00

24 lines
533 B
TypeScript

export const QueryParams = {
gallery: {
random: {
directory: 'dir',
recursive: 'recursive',
orientation: 'orientation',
fromDate: 'fromDate',
toDate: 'toDate',
minResolution: 'fromRes',
maxResolution: 'toRes'
},
search: {
type: 'type'
},
photo: 'p',
sharingKey_short: 'sk',
sharingKey_long: 'sharingKey',
searchText: 'searchText',
directory: 'directory',
knownLastModified: 'knownLastModified',
knownLastScanned: 'knownLastScanned'
}
};