Dávid Danyi cfc388aa77 * multiple team kanban board implementation added
* active flag is now working as intended
* iframe slide type added
* team-slide connection is now many-to-many
2018-09-05 17:01:40 +02:00

40 lines
1.2 KiB
Plaintext
Executable File

<?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.
*/
declare(strict_types=1);
return [
'app.config' => [
'jira.user' => '',
'jira.password' => '',
'url.jiraAvatar' => 'https://cc-jira.rnd.ki.sw.ericsson.se/secure/useravatar?ownerId=%s',
'url.jiraIssue' => 'https://cc-jira.rnd.ki.sw.ericsson.se/rest/api/2/issue/%s?fields=%s',
'url.jiraKanbanBoard' => 'https://cc-jira.rnd.ki.sw.ericsson.se/rest/api/2/search?jql=filter=%s&maxResults=1000&fields=%s',
'jira.filterFields' => [
'summary',
'priority',
'issuetype',
'labels',
'assignee',
'status',
'worklog',
'updated',
'fixVersions',
'customfield_11711', // epic link field
'customfield_11712', // epic name
'customfield_13662', // additional jiraAssignees
],
'http.proxy.enabled' => false,
'http.proxy.type' => CURLPROXY_SOCKS5,
'http.proxy.url' => "localhost:1080",
],
];