Skip to content

Commit 9dd562f

Browse files
Seed library (#678)
### Description Please explain the changes you made here. ### Checklist - [ ] Created tests which fail without the change (if possible) - [ ] All tests passing - [ ] Extended the documentation, if necessary --------- Co-authored-by: Thonyk <[email protected]>
1 parent 6ebb393 commit 9dd562f

File tree

10 files changed

+2162
-0
lines changed

10 files changed

+2162
-0
lines changed

app/core/groups/groups_type.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ class GroupType(str, Enum):
2525
admin_cdr = "c1275229-46b2-4e53-a7c4-305513bb1a2a"
2626
eclair = "1f841bd9-00be-41a7-96e1-860a18a46105"
2727
BDS = "61af3e52-7ef9-4608-823a-39d51e83d1db"
28+
seed_library = "09153d2a-14f4-49a4-be57-5d0f265261b9"
2829

2930
# Auth related groups
3031

app/modules/seed_library/__init__.py

Whitespace-only changes.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from app.types.core_data import BaseCoreData
2+
3+
4+
class SeedLibraryInformation(BaseCoreData):
5+
facebook_url: str = ""
6+
forum_url: str = ""
7+
description: str = ""
8+
contact: str = ""

0 commit comments

Comments
 (0)