Making WordPress.org

Changeset 8109


Ignore:
Timestamp:
01/19/2019 07:38:14 PM (6 years ago)
Author:
SergeyBiryukov
Message:

Trac: Add has-dev-note keyword.

Props desrosj.
Fixes #4081.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/style/trac/wp-trac.js

    r8089 r8109  
    1818        'has-unit-tests' : 'Proposed solution has unit test coverage.',
    1919        'needs-unit-tests' : 'Ticket has a particular need for unit tests.',
     20        'has-dev-note' : 'Ticket with a published post on the development blog.',
    2021        'needs-dev-note' : 'Ticket needs a post on the development blog.',
    2122        'needs-docs' : 'Inline documentation is needed.',
     
    10661067                    }
    10671068
     1069                    if ( 'has-dev-note' === keyword ) {
     1070                        wpTrac.workflow.removeKeyword( 'needs-dev-note' );
     1071                    } else if ( 'needs-dev-note' === keyword ) {
     1072                        wpTrac.workflow.removeKeyword( 'has-dev-note' );
     1073                    }
     1074
    10681075                    if ( 'has-screenshots' === keyword ) {
    10691076                        wpTrac.workflow.removeKeyword( 'needs-screenshots' );
Note: See TracChangeset for help on using the changeset viewer.