You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.4 KiB

  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. # This file is part of inactive_session_timeout, an Odoo module.
  4. #
  5. # Copyright (c) 2015 ACSONE SA/NV (<http://acsone.eu>)
  6. #
  7. # inactive_session_timeout is free software: you can redistribute it
  8. # and/or modify it under the terms of the GNU Affero General Public License
  9. # as published by the Free Software Foundation, either version 3 of
  10. # the License, or (at your option) any later version.
  11. #
  12. # inactive_session_timeout is distributed in the hope that it will
  13. # be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU Affero General Public License for more details.
  16. #
  17. # You should have received a copy of the
  18. # GNU Affero General Public License
  19. # along with inactive_session_timeout.
  20. # If not, see <http://www.gnu.org/licenses/>.
  21. #
  22. ##############################################################################
  23. {
  24. 'name': "Inactive Sessions Timeout",
  25. 'summary': """
  26. This module disable all inactive sessions since a given delay""",
  27. 'author': "ACSONE SA/NV", "Odoo Community Association (OCA)"
  28. 'website': "http://acsone.eu",
  29. 'category': 'Tools',
  30. 'version': '8.0.1.0.0',
  31. 'license': 'AGPL-3',
  32. 'depends': [
  33. 'base',
  34. ],
  35. 'data': [
  36. 'data/ir_config_parameter_data.xml'
  37. ]
  38. }