Skip to content

Commit

Permalink
make default for AVATAR_EXPOSE_USERNAMES False. Relates to #181
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneswilm committed Aug 10, 2022
1 parent c89f704 commit 3e12122
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion avatar/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class AvatarConf(AppConf):
THUMB_QUALITY = 85
HASH_FILENAMES = False
HASH_USERDIRNAMES = False
EXPOSE_USERNAMES = True
EXPOSE_USERNAMES = False
ALLOWED_FILE_EXTS = None
CACHE_TIMEOUT = 60 * 60
STORAGE = settings.DEFAULT_FILE_STORAGE
Expand Down
2 changes: 1 addition & 1 deletion docs/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ appear on the site. Listed below are those settings:

Puts the User's username field in the URL path when ``True``. Set to
``False`` to use the User's primary key instead, preventing their email
from being searchable on the web. Defaults to ``True``.
from being searchable on the web. Defaults to ``False``.

.. py:data:: AVATAR_FACEBOOK_GET_ID

Expand Down

0 comments on commit 3e12122

Please sign in to comment.