1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-12-01 22:52:06 +02:00

adding randomized sorting

This commit is contained in:
Patrik J. Braun
2019-01-27 17:27:41 -05:00
parent 38a99b1db2
commit a613373537
8 changed files with 153 additions and 96 deletions

View File

@@ -18,6 +18,8 @@ export class StringifySortingMethod implements PipeTransform {
return this.i18n('ascending date');
case SortingMethods.descDate:
return this.i18n('descending date');
case SortingMethods.random:
return this.i18n('random');
}
}
}