Bläddra i källkod

License year update; raise session auto-expiry a lot.

master
Ben Kurtovic 7 år sedan
förälder
incheckning
b80eab6313
2 ändrade filer med 3 tillägg och 3 borttagningar
  1. +1
    -1
      LICENSE
  2. +2
    -2
      calefaction/database.py

+ 1
- 1
LICENSE Visa fil

@@ -1,4 +1,4 @@
Copyright (C) 2016 Ben Kurtovic <ben.kurtovic@gmail.com>
Copyright (C) 2016-2017 Ben Kurtovic <ben.kurtovic@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal


+ 2
- 2
calefaction/database.py Visa fil

@@ -11,8 +11,8 @@ __all__ = ["Database"]

class Database:
"""Database manager for low-level authentication actions."""
MAX_SESSION_STALENESS = 2 * 60 * 60 # 2 hours
MAX_SESSION_AGE = 24 * 60 * 60 # 24 hours
MAX_SESSION_STALENESS = 7 * 24 * 60 * 60 # 7 days
MAX_SESSION_AGE = 30 * 24 * 60 * 60 # 30 days
SESSION_GRACE = 60 * 60 # 1 hour
path = None



Laddar…
Avbryt
Spara