-
Suggestion
-
Resolution: Fixed
-
1
-
1
-
Problem Definition
As an Administrator I want to make 'Days in column' set to false by default for new Kanban boards
If you don't use 'Days in column' functionality, disabling it will speed-up board load. For large instance is not possible to educate all users to disable it.
Suggested Solution
Make a setting in a Agile configuration to make 'Days in column' set to false by default for new Kanban boards.
Workaround
See also related ticket JSWSERVER-16722
Create a script which polls newly created boards and disable 'Days in column'.
This is private API for this, there is no guaranty that it will not change in the future.
- Get list of All boards: /rest/greenhopper/1.0/rapidview
curl -v 'http://127.0.0.1:8080/rest/greenhopper/1.0/rapidview' -X GET -H 'Content-Type: application/json; charset=UTF-8' -u admin:pass'
- Get config of the board: /rest/greenhopper/1.0/rapidview/ID
curl -v -X GET -H 'Content-Type: application/json; charset=UTF-8' -u admin:pass http://127.0.0.1:8080/rest/greenhopper/1.0/rapidview/242 {"id":242,"name":"Some cool name","canEdit":true,"sprintSupportEnabled":false,"showDaysInColumn":false}
- Modify showDaysInColumn: /rest/greenhopper/1.0/rapidviewconfig/showDaysInColumn
curl 'http://127.0.0.1:8080/rest/greenhopper/1.0/rapidviewconfig/showDaysInColumn' -X PUT -H 'Content-Type: application/json; charset=UTF-8' -u admin:pass --data '{"rapidViewId":242,"showDaysInColumn":false}'
all boards
to update all boards at the same time
- Run SQL
update AO_60DB71_RAPIDVIEW set SHOW_DAYS_IN_COLUMN = false;
- Restart Jira
- relates to
-
JSWSERVER-13211 Slow Kanban response and performance after upgrade to Jira 6.4
-
- Closed
-
-
JSWSERVER-16722 Give an ability to disable days in column globally
- Closed
[JSWSERVER-13037] As an Administrator I want to make 'Days in column' set to false by default for new Kanban boards
Remote Link | New: This issue links to "Page (Confluence)" [ 491933 ] |
Workflow | Original: JAC Suggestion Workflow [ 3070384 ] | New: JAC Suggestion Workflow 3 [ 3662784 ] |
Status | Original: RESOLVED [ 5 ] | New: Closed [ 6 ] |
Workflow | Original: Confluence Workflow - Public Facing v4 [ 2627242 ] | New: JAC Suggestion Workflow [ 3070384 ] |
Remote Link | Original: This issue links to "FLASH-858 (JIRA Server (Bulldog))" [ 380952 ] |
Component/s | New: AgileBoard [ 14190 ] |
Remote Link | Original: This issue links to "Page (Confluence)" [ 394036 ] |
Remote Link | New: This issue links to "Page (Confluence)" [ 394321 ] |
Remote Link | New: This issue links to "Page (Confluence)" [ 394036 ] |
Description |
Original:
h3. Problem Definition
As an Administrator I want to make 'Days in column' set to false by default for new Kanban boards If you don't use '_Days in column_' functionality, disabling it will speed-up board load. For large instance is not possible to educate all users to disable it. h3. Suggested Solution Make a setting in a Agile configuration to make 'Days in column' set to false by default for new Kanban boards. h3. Workaround Create a script which polls newly created boards and disable 'Days in column'. This is *private* API for this, there is no guaranty that it will not change in the future. * Get list of All boards: {{/rest/greenhopper/1.0/rapidview}} {code} curl -v 'http://127.0.0.1:8080/rest/greenhopper/1.0/rapidview' -X GET -H 'Content-Type: application/json; charset=UTF-8' -u admin:pass' {code} * Get config of the board: {{/rest/greenhopper/1.0/rapidview/ID}} {code:borderStyle=solid} curl -v -X GET -H 'Content-Type: application/json; charset=UTF-8' -u admin:pass http://127.0.0.1:8080/rest/greenhopper/1.0/rapidview/242 {"id":242,"name":"Some cool name","canEdit":true,"sprintSupportEnabled":false,"showDaysInColumn":false} {code} * Modify showDaysInColumn: {{/rest/greenhopper/1.0/rapidviewconfig/showDaysInColumn}} {code:borderStyle=solid} curl 'http://127.0.0.1:8080/rest/greenhopper/1.0/rapidviewconfig/showDaysInColumn' -X PUT -H 'Content-Type: application/json; charset=UTF-8' -u admin:pass --data '{"rapidViewId":242,"showDaysInColumn":false}' {code} h5. all boards to update all boards at the same time * Run SQL {code:SQL|borderStyle=solid} update AO_60DB71_RAPIDVIEW set SHOW_DAYS_IN_COLUMN = false; {code} * Restart Jira |
New:
h3. Problem Definition
As an Administrator I want to make 'Days in column' set to false by default for new Kanban boards If you don't use '_Days in column_' functionality, disabling it will speed-up board load. For large instance is not possible to educate all users to disable it. h3. Suggested Solution Make a setting in a Agile configuration to make 'Days in column' set to false by default for new Kanban boards. h3. Workaround See also related ticket Create a script which polls newly created boards and disable 'Days in column'. This is *private* API for this, there is no guaranty that it will not change in the future. * Get list of All boards: {{/rest/greenhopper/1.0/rapidview}} {code} curl -v 'http://127.0.0.1:8080/rest/greenhopper/1.0/rapidview' -X GET -H 'Content-Type: application/json; charset=UTF-8' -u admin:pass' {code} * Get config of the board: {{/rest/greenhopper/1.0/rapidview/ID}} {code:borderStyle=solid} curl -v -X GET -H 'Content-Type: application/json; charset=UTF-8' -u admin:pass http://127.0.0.1:8080/rest/greenhopper/1.0/rapidview/242 {"id":242,"name":"Some cool name","canEdit":true,"sprintSupportEnabled":false,"showDaysInColumn":false} {code} * Modify showDaysInColumn: {{/rest/greenhopper/1.0/rapidviewconfig/showDaysInColumn}} {code:borderStyle=solid} curl 'http://127.0.0.1:8080/rest/greenhopper/1.0/rapidviewconfig/showDaysInColumn' -X PUT -H 'Content-Type: application/json; charset=UTF-8' -u admin:pass --data '{"rapidViewId":242,"showDaysInColumn":false}' {code} h5. all boards to update all boards at the same time * Run SQL {code:SQL|borderStyle=solid} update AO_60DB71_RAPIDVIEW set SHOW_DAYS_IN_COLUMN = false; {code} * Restart Jira |
Assignee | New: Dmytro Borshchov [ dborshchov ] |