Commit 04e68108664949e36c294adbf51d2ae73e7c790f

Authored by Jailson Dias
1 parent 58603d7c

Criando a app de web conferencia

amadeus/settings.py
... ... @@ -80,6 +80,7 @@ INSTALLED_APPS = [
80 80 'themes',
81 81 'api',
82 82 'reports',
  83 + 'webconference',
83 84 ]
84 85  
85 86 MIDDLEWARE_CLASSES = [
... ...
webconference/__init__.py 0 → 100644
webconference/admin.py 0 → 100644
... ... @@ -0,0 +1,3 @@
  1 +from django.contrib import admin
  2 +
  3 +# Register your models here.
... ...
webconference/apps.py 0 → 100644
... ... @@ -0,0 +1,5 @@
  1 +from django.apps import AppConfig
  2 +
  3 +
  4 +class WebconferenceConfig(AppConfig):
  5 + name = 'webconference'
... ...
webconference/migrations/__init__.py 0 → 100644
webconference/models.py 0 → 100644
... ... @@ -0,0 +1,3 @@
  1 +from django.db import models
  2 +
  3 +# Create your models here.
... ...
webconference/tests.py 0 → 100644
... ... @@ -0,0 +1,3 @@
  1 +from django.test import TestCase
  2 +
  3 +# Create your tests here.
... ...
webconference/views.py 0 → 100644
... ... @@ -0,0 +1,3 @@
  1 +from django.shortcuts import render
  2 +
  3 +# Create your views here.
... ...