Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update cert #15

Merged
merged 35 commits into from
Apr 23, 2024
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
2cbccd4
Implemented webhook on solve
JasonLovesDoggo Apr 6, 2024
45e4152
fmt
JasonLovesDoggo Apr 6, 2024
6ba634a
Added checks for chal cluster connection fail
JasonLovesDoggo Apr 6, 2024
cc8b389
Fix: attr error
JasonLovesDoggo Apr 6, 2024
33f4e5e
Remove creating db object when user has alr submitted.
JasonLovesDoggo Apr 6, 2024
e6f6251
Added webhook to admin
JasonLovesDoggo Apr 6, 2024
84152fe
fixed naming issues
JasonLovesDoggo Apr 6, 2024
b1616c2
Completed webhook feature. + refactor to singals.py
JasonLovesDoggo Apr 6, 2024
2c59af7
Optimized imports + fmt
JasonLovesDoggo Apr 6, 2024
2500655
removed comment
JasonLovesDoggo Apr 6, 2024
7fa3004
disabled lookup when in debug
JasonLovesDoggo Apr 6, 2024
153df0e
renamed cache reset method to better reflect it's use.
JasonLovesDoggo Apr 6, 2024
dc60d53
Feat/Fix: Users are now ranked by -points -last_correct_submission
JasonLovesDoggo Apr 6, 2024
0d31021
replace == with is (pythonic!!!!!)
JasonLovesDoggo Apr 6, 2024
f273841
remove duplicated AUTHENTICATION_BACKENDS def
JasonLovesDoggo Apr 6, 2024
8c579ef
Describe issues with implementing fetching the rank of a single user.
JasonLovesDoggo Apr 6, 2024
7e31cfc
remove unused/useless code.
JasonLovesDoggo Apr 6, 2024
c92e9c0
Added user list and contest lb filtering (without templates)
JasonLovesDoggo Apr 6, 2024
097b720
Added templates for searching.
JasonLovesDoggo Apr 6, 2024
bd866e1
Added disclaimer
JasonLovesDoggo Apr 6, 2024
001b734
block concurrent workflows
JasonLovesDoggo Apr 6, 2024
a02aed7
test block concurrent workflows
JasonLovesDoggo Apr 6, 2024
672837e
upgrade bleach to latest. NOTE: it's been deprecated and will only su…
JasonLovesDoggo Apr 6, 2024
9937701
Added some additional db indexes
JasonLovesDoggo Apr 6, 2024
8c530f2
Attempted to speed up problems list.
JasonLovesDoggo Apr 6, 2024
1f6c02a
OKAY I LIED - made problem lookup case insensitive
JasonLovesDoggo Apr 6, 2024
af891db
Keep query params on pagination next.
JasonLovesDoggo Apr 6, 2024
496b80b
remove debug print ( I need to change deployment hash to debug startup )
JasonLovesDoggo Apr 6, 2024
bdb2244
fix: slow shutdowns
JasonLovesDoggo Apr 6, 2024
49cb637
Updated ctf req timeout to 20s and have docker kill after 21
JasonLovesDoggo Apr 6, 2024
c6dc381
1 more docker build
JasonLovesDoggo Apr 6, 2024
7f12d3a
reset config as there is no reason to keep it.
JasonLovesDoggo Apr 6, 2024
cced0a4
Optimized potential fix for last accepted submission.
JasonLovesDoggo Apr 15, 2024
9fbf309
Use Usernames when team name isn't defined
JasonLovesDoggo Apr 15, 2024
92d4295
don't include people with zero scores in api lb
JasonLovesDoggo Apr 15, 2024
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
Prev Previous commit
Next Next commit
OKAY I LIED - made problem lookup case insensitive
JasonLovesDoggo committed Apr 6, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 1f6c02aadbd348aa029641e2f13d1683472d2264
2 changes: 1 addition & 1 deletion gameserver/views/problem.py
Original file line number Diff line number Diff line change
@@ -48,7 +48,7 @@ def get_queryset(self):
submission__in=self.request.user.submissions.filter(is_correct=True).all()
)
if self.nfts:
q = q.filter(name__contains=self.nfts)
q = q.filter(name__icontains=self.nfts)
return q

def get(self, request, *args, **kwargs):