request restrictions relaxed
This commit is contained in:
parent
6399a1d30f
commit
c7c0430699
1 changed files with 4 additions and 4 deletions
|
|
@ -67,7 +67,7 @@ app.jinja_loader = my_loader
|
||||||
|
|
||||||
class Limits:
|
class Limits:
|
||||||
def __init__( self ):
|
def __init__( self ):
|
||||||
self.intervals = [ 'min', 'hour', 'day' ]
|
self.intervals = ['min', 'hour', 'day']
|
||||||
self.divisor = {
|
self.divisor = {
|
||||||
'min': 60,
|
'min': 60,
|
||||||
'hour': 3600,
|
'hour': 3600,
|
||||||
|
|
@ -79,9 +79,9 @@ class Limits:
|
||||||
'day': {},
|
'day': {},
|
||||||
}
|
}
|
||||||
self.limit = {
|
self.limit = {
|
||||||
'min': 10,
|
'min': 30,
|
||||||
'hour': 20,
|
'hour': 600,
|
||||||
'day': 100,
|
'day': 1000,
|
||||||
}
|
}
|
||||||
self.last_update = {
|
self.last_update = {
|
||||||
'min': 0,
|
'min': 0,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue