Skip to content

Commit 30df2d3

Browse files
author
Mohd Irfan
committed
v0.5 released
1 parent 41de7cb commit 30df2d3

45 files changed

Lines changed: 847 additions & 0 deletions

Some content is hidden

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

devStudy-v0.5/base/__init__.py

Whitespace-only changes.
206 Bytes
Binary file not shown.
603 Bytes
Binary file not shown.
573 Bytes
Binary file not shown.
838 Bytes
Binary file not shown.
3.08 KB
Binary file not shown.
1.26 KB
Binary file not shown.
8.73 KB
Binary file not shown.

devStudy-v0.5/base/admin.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from django.contrib import admin
2+
3+
from .models import Room, Topic, Message
4+
# Register your models here.
5+
6+
admin.site.register(Room)
7+
admin.site.register(Topic)
8+
admin.site.register(Message)

devStudy-v0.5/base/apps.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from django.apps import AppConfig
2+
3+
4+
class BaseConfig(AppConfig):
5+
default_auto_field = 'django.db.models.BigAutoField'
6+
name = 'base'

0 commit comments

Comments
 (0)