Skip to content

Commit

Permalink
Updated v2.5 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
aravinth committed Dec 12, 2023
1 parent bf398b7 commit d209b66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend
Submodule backend updated 44 files
+7 −0 ai-services/background-music-api/config.py
+175 −0 ai-services/background-music-api/main.py
+11 −0 ai-services/background-music-api/requirements.txt
+16 −13 backend/.env.example
+12 −0 backend/backend/celery.py
+1 −0 backend/backend/settings.py
+8 −0 backend/backend/urls.py
+1 −0 backend/config.py
+1 −0 backend/deploy/requirements.txt
+0 −0 backend/newsletter/__init__.py
+30 −0 backend/newsletter/admin.py
+6 −0 backend/newsletter/apps.py
+91 −0 backend/newsletter/migrations/0001_initial.py
+24 −0 backend/newsletter/migrations/0002_alter_subscribedusers_user.py
+35 −0 backend/newsletter/migrations/0003_alter_newsletter_submitter_id_and_more.py
+0 −0 backend/newsletter/migrations/__init__.py
+57 −0 backend/newsletter/models.py
+10 −0 backend/newsletter/serializers.py
+32 −0 backend/newsletter/tasks.py
+196 −0 backend/newsletter/templates/cl_newsletter_1.html
+3 −0 backend/newsletter/tests.py
+10 −0 backend/newsletter/urls.py
+356 −0 backend/newsletter/views.py
+13 −7 backend/organization/views.py
+18 −9 backend/project/views.py
+192 −49 backend/task/views.py
+80 −4 backend/transcript/views.py
+24 −0 backend/translation/migrations/0017_alter_translation_translation_type.py
+1 −1 backend/translation/models.py
+6 −5 backend/translation/utils.py
+34 −5 backend/translation/views.py
+118 −0 backend/user_reports.py
+19 −0 backend/users/migrations/0009_alter_user_date_joined.py
+3 −1 backend/users/models.py
+10 −0 backend/users/tasks.py
+2 −0 backend/users/views.py
+1 −0 backend/video/models.py
+6 −1 backend/video/urls.py
+77 −41 backend/video/utils.py
+123 −10 backend/video/views.py
+32 −11 backend/voiceover/tasks.py
+121 −6 backend/voiceover/utils.py
+63 −37 backend/voiceover/views.py
+3 −3 docker-compose.yml
2 changes: 1 addition & 1 deletion frontend
Submodule frontend updated 33 files
+1 −0 src/common/DeleteDialog.jsx
+1 −1 src/common/ExportAllDialog.jsx
+2 −2 src/common/ExportDialog.jsx
+120 −0 src/common/TaskReopenDialog.jsx
+220 −39 src/common/VideoDialog.jsx
+2 −0 src/common/index.js
+3 −0 src/config/apiendpoint.js
+2 −2 src/config/projectConfigs.js
+16 −12 src/config/tableColumns.js
+17 −2 src/containers/Admin/Dashboard.jsx
+208 −0 src/containers/Admin/NewsLetterTemplate.jsx
+2 −2 src/containers/Organization/OrgLevelTaskList.jsx
+36 −4 src/containers/Organization/Project/TaskList.jsx
+3 −3 src/containers/Organization/TaskQueueStatus/TaskQueueStatus.jsx
+74 −16 src/containers/Organization/Video/RightPanel.jsx
+4 −4 src/containers/Organization/Video/TranslationRightPanel.jsx
+2 −2 src/containers/Organization/Video/VoiceOverRightPanel.jsx
+4 −0 src/containers/Organization/Video/components/Metronome.jsx
+1 −1 src/containers/Organization/Video/components/SettingsButtonComponent.jsx
+51 −33 src/containers/Organization/Video/components/SubtitleBoxes.jsx
+24 −0 src/containers/UserManagement/NewsLetterSubscribe.jsx
+59 −9 src/containers/UserManagement/Notifications.jsx
+9 −0 src/redux/actions/api/Admin/ClearTemplatePreview.js
+44 −0 src/redux/actions/api/Admin/NewsLetterPreview.js
+42 −0 src/redux/actions/api/Admin/NewsLetterTemplate.js
+41 −0 src/redux/actions/api/Admin/NewsletterSubscribe.js
+3 −2 src/redux/actions/api/Project/ReopenTask.js
+47 −0 src/redux/actions/api/User/NewsletterSubscribe.js
+4 −0 src/redux/actions/index.js
+3 −0 src/redux/constants.js
+34 −0 src/redux/reducers/Admin/NewsLetterPreview.js
+2 −0 src/redux/reducers/index.js
+6 −0 src/utils/utils.js

0 comments on commit d209b66

Please sign in to comment.