forked from haugstrup/sample-scrumboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php.example
More file actions
30 lines (24 loc) · 805 Bytes
/
config.php.example
File metadata and controls
30 lines (24 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
define('OAUTH_ENDPOINT', 'https://podio.com/oauth/authorize');
define('CLIENT', '/path/to/podio-php/PodioAPI.php');
define('CLIENT_ID', '');
define('CLIENT_SECRET', '');
define('SPRINT_APP_ID', null);
define('SPRINT_STATE_ID', null);
define('STORY_APP_ID', null);
define('STORY_SPRINT_ID', null);
define('STORY_OWNER', null);
define('STORY_IMPORTANCE_ID', null);
define('ITEM_TITLE_ID', null);
define('ITEM_APP_ID', null);
define('ITEM_STORY_ID', null);
define('ITEM_STATE_ID', null);
define('ITEM_ESTIMATE_ID', null);
define('ITEM_TIMELEFT_ID', null);
define('ITEM_RESPONSIBLE_ID', null);
define('STATE_DEV_DONE', 'Development done');
define('STATE_QA_DONE', 'QA done');
define('STATE_PO_DONE', 'PO done');
define('STATE_NOT_STARTED', 'Not started');
// Extras
define('STORY_AREA_ID', null);