mirror of
https://github.com/ansible/awx.git
synced 2026-01-15 11:50:42 -03:30
20 lines
608 B
JavaScript
20 lines
608 B
JavaScript
/************************************
|
|
*
|
|
* Copyright (c) 2013 AnsibleWorks, Inc.
|
|
*
|
|
* config.js
|
|
*
|
|
* Gobal configuration variables for controlling application behavior.
|
|
*
|
|
*/
|
|
|
|
var $AnsibleConfig =
|
|
{
|
|
session_timeout: 3600, // cookie expiration in seconds. session will expire after this many
|
|
// seconds of inactivity.
|
|
|
|
tooltip_delay: 2000, // Default number of milliseconds to delay displaying/hiding tooltips
|
|
|
|
debug_mode: true // Enable console logging messages
|
|
}
|