Skip to content

Commit

Permalink
Added file of contributors, added documentation header to backend files
Browse files Browse the repository at this point in the history
  • Loading branch information
leonelphm committed Jun 24, 2019
1 parent d7e1d75 commit af80dde
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 0 deletions.
10 changes: 10 additions & 0 deletions WatchInCRM/routers.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
"""
WatchInCRM System
"""
## @package WachInCRM.routers
#
# Communication routes between views rest services
# @author Team WatchIn
# @date 24-06-2019
# @version 1.0

from rest_framework import routers
from business.company.views import *

Expand Down
10 changes: 10 additions & 0 deletions business/company/models.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
"""
WatchInCRM System
"""
## @package business.company.models
#
# Model that builds company data models
# @author Team WatchIn
# @date 23-06-2019
# @version 1.0

from django.db import models

class Company(models.Model):
Expand Down
10 changes: 10 additions & 0 deletions business/company/serializers.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
"""
WatchInCRM System
"""
## @package business.company.serializers
#
# Serializer of the data of the company module
# @author Team WatchIn
# @date 24-06-2019
# @version 1.0

from django.db import transaction
from rest_framework import serializers
from .models import *
Expand Down
10 changes: 10 additions & 0 deletions business/company/views.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
"""
WatchInCRM System
"""
## @package business.company.views
#
# View that controls the processes of the company
# @author Team WatchIn
# @date 24-06-2019
# @version 1.0

from rest_framework import viewsets
from .models import *
from .serializers import *
Expand Down
3 changes: 3 additions & 0 deletions contributors.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Rodrigo A. Boet @rudmanmrrod
Pablo A. Donaire @pdonaire1
Leonel P. Hernandez @leonelphm

0 comments on commit af80dde

Please sign in to comment.