-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* replace create_x Manager methods with 'save(**kwargs)' interface method add e_signature_factory fixture * move Serializer create method logic to ModelManagers * misc fixes, fixture datetime naive warnings, rename module for consistency
- Loading branch information
1 parent
45be025
commit 5661931
Showing
24 changed files
with
249 additions
and
203 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
from abc import ABCMeta, abstractmethod | ||
|
||
from django.db import models | ||
|
||
|
||
class TrakManager(models.Manager, metaclass=ABCMeta): | ||
""" | ||
Abstract class that defines an interface for our model managers | ||
""" | ||
|
||
@abstractmethod | ||
def save(self, **kwargs) -> models.QuerySet: | ||
"""Save instance and its related models to the database""" | ||
return self.create(**kwargs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.