-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Merge pull request #84 from jjyyhh0208/code-review
Feat: OPENAI API KEY added
Showing
6 changed files
with
37 additions
and
5 deletions.
There are no files selected for viewing
Binary file modified
BIN
+0 Bytes
(100%)
backend/worklog/profiles/__pycache__/serializers.cpython-311.pyc
Binary file not shown.
Binary file modified
BIN
-226 Bytes
(100%)
backend/worklog/profiles/__pycache__/views.cpython-311.pyc
Binary file not shown.
25 changes: 25 additions & 0 deletions
25
backend/worklog/profiles/migrations/0002_alter_feedback_user.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,25 @@ | ||
# Generated by Django 5.0.6 on 2024-10-20 04:17 | ||
|
||
import django.db.models.deletion | ||
from django.conf import settings | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("profiles", "0001_initial"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="feedback", | ||
name="user", | ||
field=models.ForeignKey( | ||
blank=True, | ||
null=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
related_name="feedbacks_of", | ||
to=settings.AUTH_USER_MODEL, | ||
), | ||
), | ||
] |
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
Binary file modified
BIN
-30 Bytes
(100%)
backend/worklog/worklog/__pycache__/settings.cpython-311.pyc
Binary file not shown.