Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Backend
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
swp-unisport
team-warumkeinrust
Backend
Commits
29ac1275
Commit
29ac1275
authored
3 years ago
by
borzechof99
Browse files
Options
Downloads
Patches
Plain Diff
Add Pagination to Archive
parent
034c82a9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
unisportomat/quiz/tests.py
+4
-4
4 additions, 4 deletions
unisportomat/quiz/tests.py
unisportomat/quiz/views.py
+6
-2
6 additions, 2 deletions
unisportomat/quiz/views.py
with
10 additions
and
6 deletions
unisportomat/quiz/tests.py
+
4
−
4
View file @
29ac1275
...
...
@@ -556,7 +556,7 @@ class APITest(APITestCase):
# Get initial State of Archive
response
=
self
.
client
.
get
(
reverse
(
"
archive
"
))
self
.
assertEqual
(
response
.
data
,
[])
self
.
assertEqual
(
response
.
data
[
"
results
"
]
,
[])
# Change State of Sport
response
=
self
.
client
.
patch
(
...
...
@@ -568,8 +568,8 @@ class APITest(APITestCase):
# Check whether the Archive changed
response
=
self
.
client
.
get
(
reverse
(
"
archive
"
))
self
.
assertEqual
(
response
.
data
[
0
][
"
id
"
],
1
)
self
.
assertEqual
(
response
.
data
[
0
][
"
name
"
],
"
Jiu Jitsu
"
)
self
.
assertEqual
(
response
.
data
[
"
results
"
][
0
][
"
id
"
],
1
)
self
.
assertEqual
(
response
.
data
[
"
results
"
][
0
][
"
name
"
],
"
Jiu Jitsu
"
)
def
test_sport_scraper
(
self
):
"""
...
...
@@ -596,4 +596,4 @@ class APITest(APITestCase):
self
.
assertEqual
(
len
(
sport_response
.
data
[
"
results
"
]),
120
)
sport_response
=
self
.
client
.
get
(
reverse
(
"
archive
"
))
self
.
assertEqual
(
len
(
sport_response
.
data
),
1
)
self
.
assertEqual
(
len
(
sport_response
.
data
[
"
results
"
]
),
1
)
This diff is collapsed.
Click to expand it.
unisportomat/quiz/views.py
+
6
−
2
View file @
29ac1275
...
...
@@ -297,11 +297,15 @@ class SportArchiveView(APIView):
GET for api/admin/archive/
"""
archived_sports
=
Sport
.
objects
.
filter
(
currently_active
=
False
)
paginator
=
PageNumberWithPageSizePagination
()
archived_sports
=
paginator
.
paginate_queryset
(
Sport
.
objects
.
filter
(
currently_active
=
False
).
order_by
(
"
name
"
),
request
)
response
=
ArchiveSerializer
(
archived_sports
)
return
R
esponse
(
response
.
data
)
return
paginator
.
get_paginated_r
esponse
(
response
.
data
)
class
ScraperView
(
APIView
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment