Making WordPress.org

Changeset 8110


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

Trac: Add has-privacy-review and needs-privacy-review keywords.

Props garrett-eclipse.
Fixes #3896.

File:
1 edited

Legend:

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

    r8109 r8110  
    2020        'has-dev-note' : 'Ticket with a published post on the development blog.',
    2121        'needs-dev-note' : 'Ticket needs a post on the development blog.',
     22        'has-privacy-review' : 'A review has been given from #core-privacy with regards to the problem or the solution.',
     23        'needs-privacy-review' : 'A review is requested from #core-privacy with regards to the problem or the solution.',
    2224        'needs-docs' : 'Inline documentation is needed.',
    2325        'needs-codex' : 'The Codex needs to be updated or expanded.',
     
    10731075                    }
    10741076
     1077                    if ( 'has-privacy-review' === keyword ) {
     1078                        wpTrac.workflow.removeKeyword( 'needs-privacy-review' );
     1079                    } else if ( 'needs-privacy-review' === keyword ) {
     1080                        wpTrac.workflow.removeKeyword( 'has-privacy-review' );
     1081                    }
     1082
    10751083                    if ( 'has-screenshots' === keyword ) {
    10761084                        wpTrac.workflow.removeKeyword( 'needs-screenshots' );
Note: See TracChangeset for help on using the changeset viewer.