mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2024-12-29 16:41:56 +00:00
去掉更新displayID时的userid验证
This commit is contained in:
parent
e8b06f0487
commit
ba9b609fe4
@ -387,11 +387,6 @@ class UserRankAPI(APIView):
|
|||||||
class ProfileProblemDisplayIDRefreshAPI(APIView):
|
class ProfileProblemDisplayIDRefreshAPI(APIView):
|
||||||
@login_required
|
@login_required
|
||||||
def get(self, request):
|
def get(self, request):
|
||||||
user_id = request.GET.get("user_id")
|
|
||||||
if not user_id:
|
|
||||||
return self.error("Invalid parameter, user_id is required")
|
|
||||||
if request.user.id != user_id:
|
|
||||||
return self.error("Only user self can require a refresh")
|
|
||||||
profile = request.user.userprofile
|
profile = request.user.userprofile
|
||||||
acm_problems = profile.acm_problems_status.get("problems", {})
|
acm_problems = profile.acm_problems_status.get("problems", {})
|
||||||
oi_problems = profile.oi_problems_status.get("problems", {})
|
oi_problems = profile.oi_problems_status.get("problems", {})
|
||||||
|
Loading…
Reference in New Issue
Block a user