Skip to content

Commit

Permalink
Cria app de usuários
Browse files Browse the repository at this point in the history
  • Loading branch information
brnocesar committed Jan 20, 2021
1 parent 1c3bc1c commit 850190d
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 0 deletions.
Empty file added apps/usuarios/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions apps/usuarios/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
5 changes: 5 additions & 0 deletions apps/usuarios/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from django.apps import AppConfig


class UsuariosConfig(AppConfig):
name = 'usuarios'
Empty file.
3 changes: 3 additions & 0 deletions apps/usuarios/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.
3 changes: 3 additions & 0 deletions apps/usuarios/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.test import TestCase

# Create your tests here.
3 changes: 3 additions & 0 deletions apps/usuarios/views.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.shortcuts import render

# Create your views here.
1 change: 1 addition & 0 deletions djangoreceitas/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
'django.contrib.staticfiles',
'apps.receitas',
'apps.pessoas',
'apps.usuarios',
]

MIDDLEWARE = [
Expand Down

0 comments on commit 850190d

Please sign in to comment.