File tree 6 files changed +7
-7
lines changed
web/api/server/v1/contexts
e2e/web/api/v1/contexts/torrent
6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -37,14 +37,14 @@ impl Api {
37
37
}
38
38
39
39
fn default_max_torrent_page_size ( ) -> u8 {
40
- 30
40
+ 100
41
41
}
42
42
43
43
fn default_user_profile_page_size ( ) -> u8 {
44
44
10
45
45
}
46
46
47
47
fn default_max_user_profile_page_size ( ) -> u8 {
48
- 100
48
+ 30
49
49
}
50
50
}
Original file line number Diff line number Diff line change 219
219
//!
220
220
//! [api]
221
221
//! default_torrent_page_size = 10
222
- //! max_torrent_page_size = 30
222
+ //! max_torrent_page_size = 100
223
223
//!
224
224
//! [tracker_statistics_importer]
225
225
//! torrent_info_update_interval = 3600
Original file line number Diff line number Diff line change 85
85
//! },
86
86
//! "api": {
87
87
//! "default_torrent_page_size": 10,
88
- //! "max_torrent_page_size": 30
88
+ //! "max_torrent_page_size": 100
89
89
//! },
90
90
//! "registration": {
91
91
//! "email": {
Original file line number Diff line number Diff line change 201
201
//! ```toml
202
202
//! [api]
203
203
//! default_torrent_page_size = 10
204
- //! max_torrent_page_size = 30
204
+ //! max_torrent_page_size = 100
205
205
//! ```
206
206
//!
207
207
//! **Sorting GET parameters**
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ mod for_guests {
75
75
76
76
let uploader = new_logged_in_user ( & env) . await ;
77
77
78
- let max_torrent_page_size = 30 ;
78
+ let max_torrent_page_size = 100 ;
79
79
80
80
// Given we insert one torrent more than the page size limit
81
81
for _ in 0 ..max_torrent_page_size {
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ user_quota_period_seconds = 3600
74
74
75
75
[api ]
76
76
default_torrent_page_size = 10
77
- max_torrent_page_size = 30
77
+ max_torrent_page_size = 100
78
78
79
79
[tracker_statistics_importer ]
80
80
port = 3002
You can’t perform that action at this time.
0 commit comments