From bee76cde49b22a805acc15c20628ed78b97e733b Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Fri, 26 Oct 2018 21:08:01 +0200 Subject: [PATCH] [django] add otpauth app --- ungleichotp/otpauth/__init__.py | 0 ungleichotp/otpauth/admin.py | 3 +++ ungleichotp/otpauth/apps.py | 5 +++++ ungleichotp/otpauth/migrations/__init__.py | 0 ungleichotp/otpauth/models.py | 3 +++ ungleichotp/otpauth/tests.py | 3 +++ ungleichotp/otpauth/views.py | 3 +++ 7 files changed, 17 insertions(+) create mode 100644 ungleichotp/otpauth/__init__.py create mode 100644 ungleichotp/otpauth/admin.py create mode 100644 ungleichotp/otpauth/apps.py create mode 100644 ungleichotp/otpauth/migrations/__init__.py create mode 100644 ungleichotp/otpauth/models.py create mode 100644 ungleichotp/otpauth/tests.py create mode 100644 ungleichotp/otpauth/views.py diff --git a/ungleichotp/otpauth/__init__.py b/ungleichotp/otpauth/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/ungleichotp/otpauth/admin.py b/ungleichotp/otpauth/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/ungleichotp/otpauth/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/ungleichotp/otpauth/apps.py b/ungleichotp/otpauth/apps.py new file mode 100644 index 0000000..7eb2565 --- /dev/null +++ b/ungleichotp/otpauth/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class OtpauthConfig(AppConfig): + name = 'otpauth' diff --git a/ungleichotp/otpauth/migrations/__init__.py b/ungleichotp/otpauth/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/ungleichotp/otpauth/models.py b/ungleichotp/otpauth/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/ungleichotp/otpauth/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/ungleichotp/otpauth/tests.py b/ungleichotp/otpauth/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/ungleichotp/otpauth/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/ungleichotp/otpauth/views.py b/ungleichotp/otpauth/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/ungleichotp/otpauth/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here.