Removed redundant stuff

This commit is contained in:
Hannah dagemark 2026-08-06 22:56:13 +02:00
commit f5b274a678
5 changed files with 1 additions and 43 deletions

View file

@ -7,14 +7,6 @@ from app.database import (
)
from app.models.project import Project
# For now, this is a manifest for the project model architecture:
# A project consists of:
# ID (Autoincrement num, required),
# Parent (Num, optional, if this field contains a number (not none or 0), it is considered a child project of project with ID = num)
# Title (Required, text),
# Content (Optional, for now is string text but needs to store full Markdown including images in the future)
def get_all():
return get_from_database(Project)