As an Administrator I want to make 'Days in column' set to false by default for new Kanban boards

XMLWordPrintable

    • 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

            Assignee:
            Dmytro Borshchov
            Reporter:
            Andriy Yakovlev [Atlassian]
            Votes:
            2 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: