Metadata-Version: 2.1
Name: dj-rest-tickets
Version: 0.0.17
Summary: A reusable Django app for XYZ functionality
Home-page: https://github.com/AymaneNahji/dj-rest-tickets
Author: Aymane Nahji
Author-email: aymanenahjidev@gmail.com
License: MIT
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
Requires-Dist: Django==5.1.1
Requires-Dist: django-cors-headers==4.4.0
Requires-Dist: django-filter==24.3
Requires-Dist: djangorestframework==3.15.2

# Welcome to our library | dj-rest-tickets

### dj-rest-tickets  is a library use DRF to give you EndPoints for :
- send tickets with obervers
- follow proccess of resolve tickets
- give admins control
- make communication good into users


## Get started

`pip install dj-rest-tickets`

add to your settings :

```
INSTALLED_APPS = [
    ...,
    'dj_rest_tickets',
    'dj_rest_tickets.tickets',
    'rest_framework', # just for drf api interface
]
```

than add urls :

```
path('tickets/', include('dj_rest_tickets.urls')),
```

### future features:
- mailing
- roles
