Instead of having to track down the app_label and model name from the content types table. You can now just use the path to the model and it will be resolved.
'model': 'django.contrib.auth.models.User'
Instead of
'app_label': 'auth'
'model': 'user',