├── .gitignore ├── LICENSE.txt ├── README.md ├── admin.py ├── apps.py ├── config.yml ├── consumers.py ├── migrations ├── 0001_initial.py └── __init__.py ├── mixins.py ├── models.py ├── serializers.py ├── views.py └── ws_urls.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-service-comments/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-service-comments/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Comments 2 | 3 | > Omniport service backend 4 | -------------------------------------------------------------------------------- /admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-service-comments/HEAD/admin.py -------------------------------------------------------------------------------- /apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-service-comments/HEAD/apps.py -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-service-comments/HEAD/config.yml -------------------------------------------------------------------------------- /consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-service-comments/HEAD/consumers.py -------------------------------------------------------------------------------- /migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-service-comments/HEAD/migrations/0001_initial.py -------------------------------------------------------------------------------- /migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-service-comments/HEAD/mixins.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-service-comments/HEAD/models.py -------------------------------------------------------------------------------- /serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-service-comments/HEAD/serializers.py -------------------------------------------------------------------------------- /views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-service-comments/HEAD/views.py -------------------------------------------------------------------------------- /ws_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-service-comments/HEAD/ws_urls.py --------------------------------------------------------------------------------