Check that the quote source is owned by the user.
Source code in src/django_quotes/rules.py
| @django_rules.predicate # type: ignore
def is_source_owner(user, obj):
"""Check that the quote source is owned by the user."""
return user == obj.source.owner
|