From 0c2cc832f0f7738cfe4f9fff221bf8e4f50d88d1 Mon Sep 17 00:00:00 2001 From: Felipe Henrique de Almeida Bormann Date: Mon, 19 Dec 2016 16:40:32 -0300 Subject: [PATCH] create notifications app --- notifications/__init__.py | 0 notifications/admin.py | 3 +++ notifications/apps.py | 5 +++++ notifications/migrations/__init__.py | 0 notifications/models.py | 3 +++ notifications/tests.py | 3 +++ notifications/views.py | 3 +++ 7 files changed, 17 insertions(+), 0 deletions(-) create mode 100644 notifications/__init__.py create mode 100644 notifications/admin.py create mode 100644 notifications/apps.py create mode 100644 notifications/migrations/__init__.py create mode 100644 notifications/models.py create mode 100644 notifications/tests.py create mode 100644 notifications/views.py diff --git a/notifications/__init__.py b/notifications/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/notifications/__init__.py diff --git a/notifications/admin.py b/notifications/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/notifications/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/notifications/apps.py b/notifications/apps.py new file mode 100644 index 0000000..9c260e0 --- /dev/null +++ b/notifications/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class NotificationsConfig(AppConfig): + name = 'notifications' diff --git a/notifications/migrations/__init__.py b/notifications/migrations/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/notifications/migrations/__init__.py diff --git a/notifications/models.py b/notifications/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/notifications/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/notifications/tests.py b/notifications/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/notifications/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/notifications/views.py b/notifications/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/notifications/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. -- libgit2 0.21.2