Skip to content

Commit

Permalink
Merged manually
Browse files Browse the repository at this point in the history
  • Loading branch information
rudmanmrrod committed Jun 28, 2019
1 parent 88c1f74 commit bf16c0b
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 11,663 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ migrations/*
__pycache__
__pycache__/*

# Frontend
package-lock.json
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
Loading

0 comments on commit bf16c0b

Please sign in to comment.