Add back access check
This commit is contained in:
parent
957f04dcf1
commit
1e35ba864f
1 changed files with 5 additions and 0 deletions
|
@ -753,6 +753,11 @@ class UserContestSubmissions(ForceContestMixin, UserProblemSubmissions):
|
||||||
self.contest.name,
|
self.contest.name,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def access_check(self, request):
|
||||||
|
super(UserContestSubmissions, self).access_check(request)
|
||||||
|
if not self.contest.users.filter(user_id=self.profile.id).exists():
|
||||||
|
raise Http404()
|
||||||
|
|
||||||
def get_content_title(self):
|
def get_content_title(self):
|
||||||
if self.problem.is_accessible_by(self.request.user):
|
if self.problem.is_accessible_by(self.request.user):
|
||||||
return format_html(
|
return format_html(
|
||||||
|
|
Loading…
Reference in a new issue