Emmanuel BENOîT
ff4a209d99
Completed tasks can be deleted by anyone after a configurable time unless they have reverse dependencies.
10 lines
348 B
PHP
10 lines
348 B
PHP
<?php
|
|
|
|
$config[ 'core' ][ 'db' ][ 'name' ] = '...';
|
|
$config[ 'core' ][ 'db' ][ 'user' ] = '...';
|
|
$config[ 'core' ][ 'db' ][ 'password' ] = '...';
|
|
|
|
$config[ 'core' ][ 'pages' ][ 'baseTitle' ] = 'Tasks';
|
|
|
|
/* Minimal time before a completed task can be deleted. The default is one week. */
|
|
// $config[ 't-data' ][ 'minDeletionTime' ] = 7 * 3600 * 24;
|