Uploaded image for project: 'Jira Software Data Center'
  1. Jira Software Data Center
  2. JSWSERVER-13037

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

    • 1
    • 1
    • We collect Jira feedback from various sources, and we evaluate what we've collected when planning our product roadmap. To understand how this piece of feedback will be reviewed, see our Implementation of New Features Policy.

      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

            [JSWSERVER-13037] As an Administrator I want to make 'Days in column' set to false by default for new Kanban boards

            David Di Blasio made changes -
            Remote Link New: This issue links to "Page (Confluence)" [ 491933 ]
            Katherine Yabut made changes -
            Workflow Original: JAC Suggestion Workflow [ 3070384 ] New: JAC Suggestion Workflow 3 [ 3662784 ]
            Status Original: RESOLVED [ 5 ] New: Closed [ 6 ]
            Owen made changes -
            Workflow Original: Confluence Workflow - Public Facing v4 [ 2627242 ] New: JAC Suggestion Workflow [ 3070384 ]
            Riya made changes -
            Remote Link Original: This issue links to "FLASH-858 (JIRA Server (Bulldog))" [ 380952 ]
            Andriy Yakovlev [Atlassian] made changes -
            Component/s New: AgileBoard [ 14190 ]
            Jakub Kurcek (Inactive) made changes -
            Remote Link Original: This issue links to "Page (Confluence)" [ 394036 ]
            Jakub Kurcek (Inactive) made changes -
            Remote Link New: This issue links to "Page (Confluence)" [ 394321 ]
            Jakub Kurcek (Inactive) made changes -
            Remote Link New: This issue links to "Page (Confluence)" [ 394036 ]
            Andriy Yakovlev [Atlassian] made changes -
            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 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}}
            {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
            Dmytro Borshchov made changes -
            Assignee New: Dmytro Borshchov [ dborshchov ]

              dborshchov Dmytro Borshchov
              ayakovlev@atlassian.com Andriy Yakovlev [Atlassian]
              Votes:
              2 Vote for this issue
              Watchers:
              3 Start watching this issue

                Created:
                Updated:
                Resolved: