Skip to content

Commit

Permalink
Merge branch 'develop' into release-v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kidunot89 committed Jul 18, 2019
2 parents 8cbcbfc + de0b0f0 commit d1eab10
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions includes/class-woocommerce-filters.php
Expand Up @@ -28,8 +28,8 @@ public static function add_filters() {
// Setup QL session handler.
if ( ! defined( 'NO_QL_SESSION_HANDLER' ) ) {
self::$session_header = apply_filters( 'woocommerce_graphql_session_header_name', 'woocommerce-session' );
add_filter( 'woocommerce_graphql_cookie', array( __CLASS__, 'woocommerce_cookie' ) );
add_filter( 'woocommerce_graphql_session_handler', array( __CLASS__, 'init_ql_session_handler' ) );
add_filter( 'woocommerce_cookie', array( __CLASS__, 'woocommerce_cookie' ) );
add_filter( 'woocommerce_session_handler', array( __CLASS__, 'init_ql_session_handler' ) );
add_filter( 'graphql_response_headers_to_send', array( __CLASS__, 'add_session_header_to_expose_headers' ) );
add_filter( 'graphql_access_control_allow_headers', array( __CLASS__, 'add_session_header_to_allow_headers' ) );
}
Expand Down
2 changes: 1 addition & 1 deletion wp-graphql-woocommerce.php
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: WP GraphQL WooCommerce
* Plugin URI: https://github.com/kidunot89/wp-graphql-woocommerce
* Description: Adds Woocommerce types to WPGraphQL schema.
* Description: Adds Woocommerce Functionality to WPGraphQL schema.
* Version: 0.2.0
* Author: kidunot89
* Author URI: https://axistaylor.com
Expand Down

0 comments on commit d1eab10

Please sign in to comment.