Skip to content

Commit

Permalink
Merge pull request #890 from EvanBldy/main
Browse files Browse the repository at this point in the history
various improvements
  • Loading branch information
EvanBldy authored Nov 21, 2024
2 parents c678f1d + f36ea5d commit 7fd6e86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 7fd6e86

Please sign in to comment.