Skip to content

Commit

Permalink
fixed spa
Browse files Browse the repository at this point in the history
  • Loading branch information
muratkaanmesum committed Mar 25, 2024
1 parent 9ad743f commit 41c4dd8
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 0 deletions.
Empty file.
3 changes: 3 additions & 0 deletions Backend/Apps/SocialMedia/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
6 changes: 6 additions & 0 deletions Backend/Apps/SocialMedia/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from django.apps import AppConfig


class SocialMediaConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'Apps.SocialMedia'
Empty file.
3 changes: 3 additions & 0 deletions Backend/Apps/SocialMedia/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.
3 changes: 3 additions & 0 deletions Backend/Apps/SocialMedia/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.test import TestCase

# Create your tests here.
6 changes: 6 additions & 0 deletions Backend/Apps/SocialMedia/views.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from django.shortcuts import render

# Create your views here.

def index(request):
return render(request, 'social/social.html')

0 comments on commit 41c4dd8

Please sign in to comment.