-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
12d5bf8
commit 2c4f957
Showing
6 changed files
with
73 additions
and
14 deletions.
There are no files selected for viewing
Submodule Nomenclature-api-module
updated
9 files
+1 −1 | .github/workflows/pytest.yml | |
+1 −1 | VERSION | |
+1 −1 | dependencies/TaxHub | |
+1 −1 | dependencies/UsersHub-authentification-module | |
+8 −0 | docs/changelog.rst | |
+2 −2 | requirements.in | |
+3 −3 | requirements.txt | |
+2 −5 | setup.py | |
+7 −1 | src/pypnnomenclature/schemas.py |
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,10 @@ | ||
from marshmallow import fields, validates_schema, EXCLUDE | ||
|
||
from geonature.utils.env import db, ma | ||
from geonature.core.gn_permissions.models import PermObject | ||
|
||
|
||
class PermObjectSchema(ma.SQLAlchemyAutoSchema): | ||
class Meta: | ||
model = PermObject | ||
include_fk = True |
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