From 7e0c672a75524c80ff1be343d0d22089195214d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20Danyi?= Date: Mon, 31 Jul 2017 16:10:31 +0200 Subject: [PATCH] * sane defaults --- config/autoload/local.php.dist | 25 ++++++++++++++++++++++--- public/.htaccess | 7 +++++++ 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/config/autoload/local.php.dist b/config/autoload/local.php.dist index c072368..4d002da 100644 --- a/config/autoload/local.php.dist +++ b/config/autoload/local.php.dist @@ -9,8 +9,27 @@ return [ 'app.config' => [ - 'jira.user' => '', - 'jira.password' => '', - 'url.jiraKanbanBoard' => 'https://jirapducc.mo.ca.am.ericsson.se/rest/api/2/search?jql=filter=14223&maxResults=1000&fields=assignee,summary,issuetype,status,customfield_10010,', + 'jira.user' => '...', + 'jira.password' => '...', + 'url.jiraKanbanBoard' => [ + 'baseUrl' => 'https://jirapducc.mo.ca.am.ericsson.se/rest/api/2/search?jql=filter=%s&maxResults=1000&fields=%s', + 'filterId' => 14229, + 'fields' => [ + 'assignee', + 'summary', + 'issuetype', + 'status', + 'customfield_10010', + 'customfield_11226', + 'customfield_10840', + 'customfield_11225', + 'customfield_10844', + 'customfield_10847', + 'customfield_10849', + 'customfield_10850', + 'customfield_10904', + 'customfield_11692', + ], + ], ], ]; diff --git a/public/.htaccess b/public/.htaccess index a5c4081..a9edcbf 100644 --- a/public/.htaccess +++ b/public/.htaccess @@ -15,3 +15,10 @@ RewriteRule ^.*$ - [NC,L] RewriteCond %{REQUEST_URI}::$1 ^(/.+)(.+)::\2$ RewriteRule ^(.*) - [E=BASE:%1] RewriteRule ^(.*)$ %{ENV:BASE}index.php [NC,L] + + + Require all granted + + + Require all denied + \ No newline at end of file