This commit is contained in:
AdrienLSH
2024-05-14 08:50:37 +02:00
parent 95f0097ce5
commit e308e8f012
231 changed files with 70 additions and 22 deletions

9
django/profiles/admin.py Normal file
View File

@ -0,0 +1,9 @@
from django.contrib import admin
from .models import ProfileModel, FriendModel, FriendRequestModel, BlockModel
# Register your models here.
admin.site.register(ProfileModel)
admin.site.register(BlockModel)
admin.site.register(FriendModel)
admin.site.register(FriendRequestModel)