Commit 0c2cc832f0f7738cfe4f9fff221bf8e4f50d88d1

Authored by Felipe Henrique de Almeida Bormann
1 parent d1d9721b

create notifications app

notifications/__init__.py 0 → 100644
notifications/admin.py 0 → 100644
... ... @@ -0,0 +1,3 @@
  1 +from django.contrib import admin
  2 +
  3 +# Register your models here.
... ...
notifications/apps.py 0 → 100644
... ... @@ -0,0 +1,5 @@
  1 +from django.apps import AppConfig
  2 +
  3 +
  4 +class NotificationsConfig(AppConfig):
  5 + name = 'notifications'
... ...
notifications/migrations/__init__.py 0 → 100644
notifications/models.py 0 → 100644
... ... @@ -0,0 +1,3 @@
  1 +from django.db import models
  2 +
  3 +# Create your models here.
... ...
notifications/tests.py 0 → 100644
... ... @@ -0,0 +1,3 @@
  1 +from django.test import TestCase
  2 +
  3 +# Create your tests here.
... ...
notifications/views.py 0 → 100644
... ... @@ -0,0 +1,3 @@
  1 +from django.shortcuts import render
  2 +
  3 +# Create your views here.
... ...