Jelajahi Sumber

Fixed #26514 -- Documented that User.refresh_from_db() doesn't clear the permission cache.

Tim Graham 9 tahun lalu
induk
melakukan
2c4c67af94
1 mengubah file dengan 1 tambahan dan 0 penghapusan
  1. 1 0
      docs/topics/auth/default.txt

+ 1 - 0
docs/topics/auth/default.txt

@@ -284,6 +284,7 @@ the ``User`` from the database. For example::
         user.has_perm('myapp.change_bar')  # False
 
         # Request new instance of User
+        # Be aware that user.refresh_from_db() won't clear the cache.
         user = get_object_or_404(User, pk=user_id)
 
         # Permission cache is repopulated from the database