Skip to content
Snippets Groups Projects
  1. Dec 18, 2017
    • Benjamin Bertrand's avatar
      Pass selected values to register network form · 8d4e8f94
      Benjamin Bertrand authored
      Allow to customize the default selected values:
      - the default network prefix can be defined in the configuration (default to 24)
      - the default first and last IP chosen can probably be improved
        it defaults to hosts[9] and hosts[-5] if the list has more than 15
        elements or the first and last otherwise
      
      Note that when using a small prefix (< 19), the number of possilbe IPs is quite
      large and updating the first and last IP select field takes some time...
      8d4e8f94
  2. Dec 13, 2017
    • Benjamin Bertrand's avatar
      Add server side session using Flask-Session · d5d3530a
      Benjamin Bertrand authored
      In Flask, session data are stored in a cookie by default.
      Using a server side session, there is no risk of putting too much data
      in the session and transmissting a big cookie on every request
      (only an id is sent in the cookie).
      
      Redis is used as backend (without persistent storage).
      d5d3530a
    • Benjamin Bertrand's avatar
      Add token revoking · c5965f94
      Benjamin Bertrand authored
      - All created tokens are stored in the database.
        To revoke a token, we just delete it from the database.
        Tokens not found in the database are thus considered unvalid / revoked.
      
      - Add button to copy generated token to the clipboard
      
      - Redesign profile page
      c5965f94
  3. Nov 03, 2017
  4. Sep 08, 2017
  5. Sep 06, 2017
  6. Aug 21, 2017
  7. Aug 18, 2017
  8. Jul 19, 2017
Loading