diff --git wordpress.org/public_html/style/trac/wp-trac.js wordpress.org/public_html/style/trac/wp-trac.js
index a77b41c..7547d39 100644
|
|
var wpTrac, coreKeywordList, gardenerKeywordList, coreFocusesList; |
36 | 36 | 'administration' : 'Administration related, but assigned a more specific component.', |
37 | 37 | 'template' : 'Relating to theme templating, but assigned a more specific component.', |
38 | 38 | 'multisite' : 'Relating to multisite, but assigned a more specific component.', |
| 39 | 'restapi' : 'Relating to the REST API, but assigned a more specific component.', |
39 | 40 | 'performance' : 'Performance or caching (but not the Cache API component).' |
40 | 41 | }; |
41 | 42 | |
… |
… |
var wpTrac, coreKeywordList, gardenerKeywordList, coreFocusesList; |
1092 | 1093 | var component = $(this).val(); |
1093 | 1094 | if ( component === 'Network Admin' || component === 'Networks and Sites' ) { |
1094 | 1095 | add( 'multisite' ); |
| 1096 | } else if ( component === 'REST API' ) { |
| 1097 | add( 'restapi' ); |
1095 | 1098 | } |
1096 | 1099 | } |
1097 | 1100 | |
diff --git wordpress.org/public_html/wp-content/plugins/trac-notifications/trac-notifications.php wordpress.org/public_html/wp-content/plugins/trac-notifications/trac-notifications.php
index bede16f..b7700b1 100644
|
|
class wporg_trac_notifications { |
83 | 83 | |
84 | 84 | function get_trac_focuses() { |
85 | 85 | if ( 'core' === $this->trac ) { |
86 | | return array( 'accessibility', 'administration', 'docs', 'javascript', 'multisite', 'performance', 'rtl', 'template', 'ui' ); |
| 86 | return array( 'accessibility', 'administration', 'docs', 'javascript', 'multisite', 'performance', 'restapi', 'rtl', 'template', 'ui' ); |
87 | 87 | } |
88 | 88 | return array(); |
89 | 89 | } |