Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/serpentarius13/pet-todos
https://github.com/serpentarius13/pet-todos
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/serpentarius13/pet-todos
- Owner: Serpentarius13
- Created: 2023-01-15T21:02:32.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-19T11:40:50.000Z (about 2 years ago)
- Last Synced: 2024-11-15T01:30:18.656Z (2 months ago)
- Language: Vue
- Size: 94.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Фичи:
- Создать день (с настроением)
- Добавить туду в день
- Добавить текст в день
- Добавить картинку в день- Закончить туду и прикрепить ссылку на коммит или текст (опционально)
- Закончить день (все незакомпличенные туду фейлятся и день больше нельзя модифицировать)## Модели
### Модель дня:
- mood: String,
- date: Date,
- todos: Array[Todo]
- texts: Array[Text]
- images: Array[Images]
- isCompleted: Boolean
- authorId: Number### Модель туду:
- text: String,
- isCompleted: Boolean,
- link: String | null,
- text: String | null### Модель картинки:
- imageUrl: String,
- title: String | null,
- text: String | null### Модель текста:
- title: String | null,
- text: String