-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(backend) add google calender link (#35)
* Add "google_calender_link" Property to "Workshop", "Presentation" * Add Fields serializers.py * Fix Property Name * feat: url encode * migration * fix(backend): fix quoting multiple times --------- Co-authored-by: Alireza Zare <[email protected]> Co-authored-by: Adibov <[email protected]>
- Loading branch information
1 parent
9aa8df5
commit 01e6897
Showing
3 changed files
with
53 additions
and
2 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
backend/backend_api/migrations/0051_remove_workshop_add_to_calendar_link.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Generated by Django 4.2.4 on 2023-11-28 22:05 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("backend_api", "0050_presentation_has_project"), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="workshop", | ||
name="add_to_calendar_link", | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters