Default yield_albums to false instead of true.

I'm finding I just don't like the ux of having them on default.
master
voussoir 2022-10-29 14:19:19 -07:00
parent 0a318baea9
commit 172a539f24
No known key found for this signature in database
GPG Key ID: 5F7554F8C26DACCB
2 changed files with 2 additions and 2 deletions

View File

@ -444,7 +444,7 @@ class PDBPhotoMixin:
warning_bag=None, warning_bag=None,
give_back_parameters=False, give_back_parameters=False,
yield_albums=True, yield_albums=False,
yield_photos=True, yield_photos=True,
): ):
''' '''

View File

@ -379,7 +379,7 @@ def get_search_core():
mimetype = request.args.get('mimetype') mimetype = request.args.get('mimetype')
sha256 = request.args.get('sha256') sha256 = request.args.get('sha256')
is_searchhidden = request.args.get('is_searchhidden', False) is_searchhidden = request.args.get('is_searchhidden', False)
yield_albums = request.args.get('yield_albums', True) yield_albums = request.args.get('yield_albums', False)
yield_photos = request.args.get('yield_photos', True) yield_photos = request.args.get('yield_photos', True)
limit = request.args.get('limit') limit = request.args.get('limit')