MR comments

- NO_ACCESS_ROLE_ID constant moved to models.py
- added docstring for batch create request body
This commit is contained in:
Davor 2022-07-21 14:14:22 +02:00
parent d140a1a6cb
commit 66b44ae1a0
3 changed files with 7 additions and 7 deletions

View file

@ -3,6 +3,8 @@ from database import db
class Role(db.Model):
NO_ACCESS_ROLE_ID = 3
id = db.Column(Integer, primary_key=True)
name = db.Column(String(length=64))