Default yield_albums to false instead of true.
I'm finding I just don't like the ux of having them on default.
This commit is contained in:
parent
0a318baea9
commit
172a539f24
2 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||||
):
|
):
|
||||||
'''
|
'''
|
||||||
|
|
|
@ -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')
|
||||||
|
|
Loading…
Reference in a new issue