1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/src/common/QueryParams.ts
2020-01-07 22:17:54 +01:00

24 lines
508 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_query: 'sk',
sharingKey_params: 'sharingKey',
searchText: 'searchText',
directory: 'directory',
knownLastModified: 'klm',
knownLastScanned: 'kls'
}
};