Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ install_requires =
flask_restful==0.3.10
flask_sqlalchemy==3.1.1
flask-fs2[swift, s3]==0.7.27
flask-jwt-extended==4.7.0
flask-jwt-extended==4.7.1
flask-migrate==4.0.7
flask-socketio==5.4.1
flask==3.1.0
Expand Down
2 changes: 1 addition & 1 deletion zou/app/services/user_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ def check_supervisor_task_access(task, new_data={}):
# checks that the supervisor only modifies columns
# for which he is authorized
allowed_columns = set(
["priority", "start_date", "due_date", "estimation"]
["priority", "start_date", "due_date", "estimation", "difficulty"]
)
if len(set(new_data.keys()) - allowed_columns) == 0:
user_departments = persons_service.get_current_user(
Expand Down