Skip to content

Commit

Permalink
Font Library REST API endpoints: address initial feedback from featur…
Browse files Browse the repository at this point in the history
…e branch (#57946)
  • Loading branch information
creativecoder authored Jan 19, 2024
1 parent a666bb5 commit 32689e1
Show file tree
Hide file tree
Showing 8 changed files with 446 additions and 304 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php
/**
* WP_REST_Autosave_Fonts_Controller class.
*
* This file contains the class for the REST API Autosave Font Families and Font Faces Controller.
*
* @package WordPress
* @subpackage REST_API
* @since 6.5.0
*/

if ( class_exists( 'WP_REST_Autosave_Fonts_Controller' ) ) {
return;
}

/**
* Autosave Font Families Controller class.
*
* @since 6.5.0
*/
class WP_REST_Autosave_Fonts_Controller {
public function register_routes() {
// disable autosave endpoints for font families and faces.
}
}
Loading

0 comments on commit 32689e1

Please sign in to comment.