Dávid Danyi b45f0139e5 * week number in graph is now a config parameter, defaults to 25
* urlhelper added to the layout
* footer changed to some stats
2017-09-15 15:37:34 +02:00

26 lines
1.5 KiB
Plaintext

<?php
/**
* Local configuration.
*
* Copy this file to `local.php` and change its settings as required.
* `local.php` is ignored by git and safe to use for local and sensitive data like usernames and passwords.
*/
return [
'app.config' => [
'numberOfWeeks' => 25,
'jira.user' => '',
'jira.password' => '',
'jira.query.filtered' => 'https://jirapducc.mo.ca.am.ericsson.se/rest/api/2/search?maxResults=1000&jql=filter=%s&fields=created,resolutiondate',
'jira.query.defaultOpen' => 'https://jirapducc.mo.ca.am.ericsson.se/rest/api/2/search?maxResults=1000&jql=project = TSPCORE AND (type = "JIRA case" OR reporter in (ethfoa, edvipin, ethibi, eistkde, ejzsfek, elszhal, eptezel, ETHRGC, ETHTHS, eszigre, etibrkc, ezsubar)) AND status != Done ORDER BY created DESC&fields=created,resolutiondate',
'jira.query.default' => 'https://jirapducc.mo.ca.am.ericsson.se/rest/api/2/search?maxResults=1000&jql=project = TSPCORE AND (type = "JIRA case" OR reporter in (ethfoa, edvipin, ethibi, eistkde, ejzsfek, elszhal, eptezel, ETHRGC, ETHTHS, eszigre, etibrkc, ezsubar)) ORDER BY created DESC&fields=created,resolutiondate',
'jira.query.legacy' => 'https://jirapducc.mo.ca.am.ericsson.se/rest/api/2/search?jql=project = TSPCORE AND type = "JIRA case" ORDER BY created DESC&maxResults=1000&fields=created,resolutiondate',
'http.proxy.enabled' => false,
'http.proxy.type' => CURLPROXY_SOCKS5,
'http.proxy.url' => "localhost:1080",
],
];