mirror of
https://github.com/bpatrik/pigallery2.git
synced 2024-11-24 08:42:24 +02:00
24 lines
533 B
TypeScript
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'
|
|
}
|
|
};
|