diff --git a/.github/templates/bug_report.md b/.github/templates/bug_report.md old mode 100644 new mode 100755 diff --git a/.github/templates/feature_request.md b/.github/templates/feature_request.md old mode 100644 new mode 100755 diff --git a/.github/templates/pull_request_template.md b/.github/templates/pull_request_template.md old mode 100644 new mode 100755 diff --git a/.github/templates/user_stories.md b/.github/templates/user_stories.md old mode 100644 new mode 100755 diff --git a/.github/workflows/code-analysis.yml b/.github/workflows/code-analysis.yml old mode 100644 new mode 100755 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml old mode 100644 new mode 100755 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml old mode 100644 new mode 100755 diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/Dockerfile b/Dockerfile old mode 100644 new mode 100755 diff --git a/LICENSE b/LICENSE old mode 100644 new mode 100755 diff --git a/Procfile b/Procfile old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/docker-compose.yml b/docker-compose.yml old mode 100644 new mode 100755 diff --git a/env.example b/env.example old mode 100644 new mode 100755 diff --git a/requirements.txt b/requirements.txt old mode 100644 new mode 100755 diff --git a/runtime.txt b/runtime.txt old mode 100644 new mode 100755 diff --git a/sonar-project.properties b/sonar-project.properties old mode 100644 new mode 100755 diff --git a/sonar_scripts/parser.py b/sonar_scripts/parser.py old mode 100644 new mode 100755 diff --git a/src/__init__.py b/src/__init__.py old mode 100644 new mode 100755 diff --git a/src/constants/__init__.py b/src/constants/__init__.py old mode 100644 new mode 100755 diff --git a/src/constants/errorMessages.py b/src/constants/errorMessages.py old mode 100644 new mode 100755 diff --git a/src/controller/__init__.py b/src/controller/__init__.py old mode 100644 new mode 100755 diff --git a/src/controller/commentController.py b/src/controller/commentController.py old mode 100644 new mode 100755 diff --git a/src/controller/scheduleController.py b/src/controller/scheduleController.py old mode 100644 new mode 100755 diff --git a/src/database.py b/src/database.py old mode 100644 new mode 100755 diff --git a/src/domain/__init__.py b/src/domain/__init__.py old mode 100644 new mode 100755 diff --git a/src/domain/commentSchema.py b/src/domain/commentSchema.py old mode 100644 new mode 100755 diff --git a/src/domain/watchLaterSchema.py b/src/domain/watchLaterSchema.py new file mode 100644 index 0000000..6531080 --- /dev/null +++ b/src/domain/watchLaterSchema.py @@ -0,0 +1,11 @@ +from pydantic import BaseModel + +class WatchLaterBase(BaseModel): + user_id: str + video_id: str + +class WatchLaterCreate(WatchLaterBase): + pass + +class WatchLaterStatus(WatchLaterBase): + staus: bool \ No newline at end of file diff --git a/src/main.py b/src/main.py old mode 100644 new mode 100755 diff --git a/src/model/__init__.py b/src/model/__init__.py old mode 100644 new mode 100755 diff --git a/src/model/commentModel.py b/src/model/commentModel.py old mode 100644 new mode 100755 diff --git a/src/repository/__init__.py b/src/repository/__init__.py old mode 100644 new mode 100755 diff --git a/src/repository/commentRepository.py b/src/repository/commentRepository.py old mode 100644 new mode 100755 diff --git a/src/utils/enumeration.py b/src/utils/enumeration.py old mode 100644 new mode 100755 diff --git a/tests/__init__.py b/tests/__init__.py old mode 100644 new mode 100755 diff --git a/tests/_test_comments.py b/tests/_test_comments.py old mode 100644 new mode 100755 diff --git a/tests/test_schedule.py b/tests/test_schedule.py old mode 100644 new mode 100755