Skip to content

Commit 74684a6

Browse files
author
Mohd Irfan
committed
project nearly completed
1 parent 2b1453c commit 74684a6

56 files changed

Lines changed: 2348 additions & 199 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

studybud/.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"[python]": {
3+
"editor.defaultFormatter": "ms-python.autopep8"
4+
},
5+
"python.formatting.provider": "none"
6+
}
2.86 KB
Binary file not shown.
289 Bytes
Binary file not shown.
2.32 KB
Binary file not shown.

studybud/base/api/__init__.py

Whitespace-only changes.
210 Bytes
Binary file not shown.
847 Bytes
Binary file not shown.
543 Bytes
Binary file not shown.
1.6 KB
Binary file not shown.

studybud/base/api/serializers.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from rest_framework.serializers import ModelSerializer
2+
from base.models import Room
3+
4+
5+
class RoomSerializer(ModelSerializer):
6+
class Meta:
7+
model = Room
8+
fields = '__all__'

0 commit comments

Comments
 (0)