Преглед изворни кода

Fix: authorization issue (#3530)

### What problem does this PR solve?


### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
tags/v0.14.0
Kevin Hu пре 11 месеци
родитељ
комит
541272eb99
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1
    1
      api/apps/tenant_app.py

+ 1
- 1
api/apps/tenant_app.py Прегледај датотеку

@@ -83,7 +83,7 @@ def create(tenant_id):
@manager.route('/<tenant_id>/user/<user_id>', methods=['DELETE'])
@login_required
def rm(tenant_id, user_id):
if current_user.id != tenant_id:
if current_user.id != tenant_id and current_user.id != user_id:
return get_json_result(
data=False,
message='No authorization.',

Loading…
Откажи
Сачувај