chg: [server] added missing type (3) - Item

main
Alexandre Dulaunoy 2021-05-27 11:06:17 +02:00
parent 87babe05f1
commit e14ba03145
No known key found for this signature in database
GPG Key ID: 09E2CD4944E6CBCD
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ api = Api(app, version=version, title='CyCAT.org API', description='CyCAT - The
import uuid
import inspect
import redis
cycat_type = {"1": "Publisher", "2": "Project"}
cycat_type = {"1": "Publisher", "2": "Project", "3": "Item"}
r = redis.Redis(host='127.0.0.1', port='3033', decode_responses=True)