Skip to content

Smart Links: Change data structure to use Status taxonomy#3213

Merged
vaurdan merged 12 commits intoadd/traffic-boostfrom
update/smart-links-status-taxonomy
Mar 27, 2025
Merged

Smart Links: Change data structure to use Status taxonomy#3213
vaurdan merged 12 commits intoadd/traffic-boostfrom
update/smart-links-status-taxonomy

Conversation

@vaurdan
Copy link
Contributor

@vaurdan vaurdan commented Mar 20, 2025

Description

This PR changes the data structure of the Smart Link, to use a new taxonomy - Smart Link Status - to store the status of a given smart link - either applied or pending.

This is considerable more performant than relying on post meta, since we need to do queries using the smart link status (get all inbound that are pending, get all outbound that are applied, etc).

I have also introduced a function in wp-parsely.php that handles data schema updates. In this case it is necessary to prevent breaking changes for a couple reasons:

  • For sites running on Parse.ly 3.17.0 or lower: the Smart Linking feature does not add the _smart_link_applied post meta to applied smart links. Therefore, all the smart links that are added to the database at this version are considered applied;
  • For sites running the beta 3.18.0, they are using _smart_link_applied to detect if the link is applied (true if so, or pending if false).

This update callback checks for Smart Links that do not have the _smart_link_applied post meta, and if not, add the accepted term. If it does have the post meta, it will add the term depending on the meta value.

The callback only runs once, and only when PARSELY_DATA_SCHEMA_VERSION is higher than the current version stored in the parsely_data_schema_version option.

Motivation and context

  • Improve performance of Smart Links queries, and makes querying smart links easier overall.
  • Add foundation for supporting potential new status.

How has this been tested?

Tested locally in a few different scenarios:

  • Tested with data from Parse.ly 3.17.0 - data schema was successfully upgraded and existing smart links keep functioning.
  • Tested with data from Parse.ly 3.18.0 beta - data schema was successfully upgraded, existing smart links and traffic boost links were updated to have the new term and the old post meta was removed.
  • Tested and validated that the callback only runs once.

The existing tests also pass.

Summary by CodeRabbit

  • New Features

    • Introduced a flexible status system for smart links, offering clear distinctions between states.
    • Added taxonomy support to enhance content tracking and organization.
    • Implemented a method for checking and updating smart link statuses during admin actions.
  • Refactor

    • Centralized status handling across smart linking functionalities for improved performance and reliability.
  • Chores

    • Updated the data schema version to streamline migration and ensure smoother processing.

@vaurdan vaurdan added Component: PHP Refactoring Ticket/PR that is or requires a refactoring Feature: PCI Ticket/PR related to Content Intelligence Feature: Engagement Boost Ticket/PR related to Engagement Boost labels Mar 20, 2025
@vaurdan vaurdan added this to the 3.18.0 milestone Mar 20, 2025
@vaurdan vaurdan self-assigned this Mar 20, 2025
@vaurdan vaurdan requested a review from a team as a code owner March 20, 2025 11:35
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Mar 20, 2025

📝 Walkthrough

Walkthrough

The changes refactor how smart link status is managed across multiple parts of the system. Direct property checks and assignments related to the applied state are replaced by method calls (such as is_applied() and set_status()), centralizing the logic. Additionally, the smart link status has been expanded from a boolean flag to a more flexible string-based system. Changes include updates to model classes, REST endpoints, a new taxonomy registration, and type updates in TypeScript, as well as a new data schema update mechanism in the main plugin file.

Changes

File(s) Change Summary
src/Models/class-inbound-smart-link.php Replaced direct $this->applied property checks with is_applied() calls; updated apply(), remove(), and delete_pending_suggestions() to use set_status(), consolidating status management.
src/Models/class-smart-link.php Replaced the boolean $applied with a string-based $status; added get_status(), is_applied(), and set_status() methods; updated method visibilities for cache flushing and smart link retrieval.
src/content-helper/editor-sidebar/smart-linking/class-smart-linking.php Introduced a new taxonomy smart_link_status; updated post type registration to include this taxonomy; modified term purge logic in purge_smart_links().
src/content-helper/editor-sidebar/smart-linking/provider.ts Added a new type SmartLinkStatus (`'applied'
src/content-helper/editor-sidebar/smart-linking/utils.ts Augmented the smart link object in getAllSmartLinksInPost() with a new property status set to 'applied'.
src/rest-api/content-helper/class-endpoint-smart-linking.php Updated methods (add_smart_link, add_multiple_smart_links, set_smart_links) to use set_status( Smart_Link_Status::APPLIED ) instead of directly setting the $applied property.
src/rest-api/content-helper/class-endpoint-traffic-boost.php Modified generate_link_suggestions to call set_status(Smart_Link_Status::PENDING) and updated accept_suggestion to use is_applied() for status checking.
wp-parsely.php Added the constant PARSELY_DATA_SCHEMA_VERSION and a new function parsely_check_data_schema_updates() for updating smart link statuses based on metadata; made minor formatting adjustments to other constants.

Sequence Diagram(s)

sequenceDiagram
    participant Client
    participant API as "Endpoint_Smart_Linking"
    participant SL as "Smart_Link Object"
    participant DB as "Database"
    
    Client->>API: Request to add/update smart link
    API->>SL: Call set_status(APPLIED)
    SL->>DB: Update status via taxonomy
    DB-->>SL: Confirm update
    SL-->>API: Return updated link
    API-->>Client: Respond with success
Loading
sequenceDiagram
    participant Client
    participant TBoost as "Endpoint_Traffic_Boost"
    participant Inbound as "Inbound_Smart_Link"
    
    Client->>TBoost: Request link suggestions
    TBoost->>Inbound: Call generate_link_suggestions (set status to PENDING)
    Inbound-->>TBoost: Return suggestion with pending status
    TBoost-->>Client: Deliver suggestions
Loading

Possibly related PRs

  • Traffic Boost: Fix permalinks and highlighting #3090: The changes in the main PR, which focus on updating the Inbound_Smart_Link class's methods to use a centralized status management approach, are related to the retrieved PR, as both involve modifications to how smart link statuses are managed, specifically through method calls like set_status() and is_applied().
  • Smart Linking: Fix issue when fetching post data and post stats #3208: The changes in the main PR, which focus on modifying the Inbound_Smart_Link class's methods to centralize status management, are related to the retrieved PR, as both involve updates to how smart link statuses are handled, specifically through method calls like set_status() and is_applied().
  • PCH Smart Linking: Add Inbound Smart Links support  #2553: The changes in the main PR, which focus on enhancing the Inbound_Smart_Link class's methods and status management, are directly related to the modifications made in the retrieved PR, as both involve the Inbound_Smart_Link class and its functionality.

Suggested labels

Changelog: Changed

Suggested reviewers

  • acicovic

📜 Recent review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 3e16f6b and ee1f974.

📒 Files selected for processing (1)
  • wp-parsely.php (2 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
`**/*.{html,php}`: "Perform a detailed review of the provided code with following key aspects in mind: - Review the HTML and PHP code to ensure it is well-structured and adheres ...

**/*.{html,php}: "Perform a detailed review of the provided code with following key aspects in mind:

  • Review the HTML and PHP code to ensure it is well-structured and adheres to best practices.
  • Ensure the code follows WordPress coding standards and is well-documented.
  • Confirm the code is secure and free from vulnerabilities.
  • Optimize the code for performance, removing any unnecessary elements.
  • Validate comments for accuracy, currency, and adherence to WordPress coding standards.
  • Ensure each line comment concludes with a period.
  • Verify code compatibility with the latest version of WordPress, avoiding deprecated functions or features."
  • wp-parsely.php
🧬 Code Definitions (1)
wp-parsely.php (2)
src/Models/class-smart-link.php (4) (4)
  • Smart_Link (25-1101)
  • get_smart_link_by_id (816-824)
  • set_status (518-528)
  • flush_all_cache (1055-1063)
src/Models/class-inbound-smart-link.php (1) (1)
  • get_smart_link_by_id (1151-1158)
⏰ Context from checks skipped due to timeout of 90000ms (2)
  • GitHub Check: E2E against WordPress latest
  • GitHub Check: build
🔇 Additional comments (6)
wp-parsely.php (6)

52-54: Constants are well-formatted and appropriately defined.

The code properly aligns the constant declarations for consistency and readability, while introducing a new data schema versioning constant. This follows WordPress coding standards for constant naming and formatting.


232-238: Well-documented schema update functionality.

The function is properly hooked to admin_init with a high priority (999) to ensure it runs after other initialization processes. The PHP DocBlock follows WordPress standards with appropriate @since tag and clear description.


239-247: Good version checking implementation.

The code properly retrieves the current schema version, defaults to 0 if not found, and includes an early return if no update is needed. This approach is efficient and follows best practices for version management.


249-280: Consider potential performance impact with large datasets.

While the query logic is correct and appropriately commented with PHPCS exceptions, retrieving all posts at once (posts_per_page => -1) could potentially cause performance issues on sites with a large number of smart links.

Consider adding pagination or chunking for larger datasets:

- $smart_links_without_status = get_posts(
-   array(
-     'post_type'      => 'parsely_smart_link',
-     'posts_per_page' => -1,
-     'fields'         => 'ids',
-     // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_tax_query
-     'tax_query'      => array(
-       array(
-         'taxonomy' => 'smart_link_status',
-         'field'    => 'name',
-         'terms'    => \Parsely\Models\Smart_Link_Status::get_all_statuses(),
-         'operator' => 'NOT IN',
-       ),
-     ),
-   )
- );
+ // Process in batches of 100 to avoid memory issues
+ $batch_size = 100;
+ $page = 1;
+ $processed_all = false;
+ 
+ while (!$processed_all) {
+   $smart_links_without_status = get_posts(
+     array(
+       'post_type'      => 'parsely_smart_link',
+       'posts_per_page' => $batch_size,
+       'paged'          => $page,
+       'fields'         => 'ids',
+       // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_tax_query
+       'tax_query'      => array(
+         array(
+           'taxonomy' => 'smart_link_status',
+           'field'    => 'name',
+           'terms'    => \Parsely\Models\Smart_Link_Status::get_all_statuses(),
+           'operator' => 'NOT IN',
+         ),
+       ),
+     )
+   );
+   
+   if (empty($smart_links_without_status)) {
+     $processed_all = true;
+     continue;
+   }
+   
+   // Process this batch
+   // [Processing code here]
+   
+   $page++;
+ }

However, given this is a one-time migration that will only run once per site when updating, the current approach may be acceptable for most installations.


282-312: Smart Link status migration logic is thorough and handles all cases.

The code correctly:

  1. Retrieves smart links from their IDs
  2. Determines the appropriate status based on meta values
  3. Sets the status with proper taxonomy terms
  4. Flushes caches to maintain data consistency

The logic properly handles multiple scenarios including missing meta (defaulting to "applied" for backward compatibility with Parse.ly < 3.18.0) and different meta values, which aligns with the PR objectives.


314-315: Schema version update is handled appropriately.

The code correctly updates the option with the new schema version after all migrations are complete, ensuring the migration won't run again unnecessarily.

✨ Finishing Touches
  • 📝 Generate Docstrings

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

vaurdan added 3 commits March 20, 2025 12:23
# Conflicts:
#	build/content-helper/editor-sidebar.asset.php
#	build/content-helper/editor-sidebar.js
#	src/Models/class-smart-link.php
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
wp-parsely.php (1)

232-319: Added data schema update mechanism.

This well-implemented function handles the migration of smart links from the old meta-based status system to the new taxonomy-based approach. Key strengths:

  1. Proper version checking to ensure the function runs only once
  2. Efficient query to find affected smart links
  3. Early return if no updates are needed
  4. Careful handling of existing meta data for backward compatibility
  5. Cache flushing to ensure fresh data after updates
  6. Cleanup of deprecated meta values

The function is well-documented with clear explanations of its purpose and logic.

However, note that get_posts with posts_per_page = -1 could potentially cause memory issues on sites with a very large number of smart links. Consider adding pagination for extremely large sites.

- $smart_links_without_status = get_posts(
-   array(
-     'post_type'      => 'parsely_smart_link',
-     'posts_per_page' => -1,
-     'fields'         => 'ids',
-     'tax_query'      => array(
-       array(
-         'taxonomy' => 'smart_link_status',
-         'field'    => 'name',
-         'terms'    => \Parsely\Models\Smart_Link_Status::get_all_statuses(),
-         'operator' => 'NOT IN',
-       ),
-     ),
-   )
- );
+ $batch_size = 100;
+ $page = 1;
+ $smart_links_without_status = array();
+ 
+ do {
+   $batch = get_posts(
+     array(
+       'post_type'      => 'parsely_smart_link',
+       'posts_per_page' => $batch_size,
+       'paged'          => $page,
+       'fields'         => 'ids',
+       'tax_query'      => array(
+         array(
+           'taxonomy' => 'smart_link_status',
+           'field'    => 'name',
+           'terms'    => \Parsely\Models\Smart_Link_Status::get_all_statuses(),
+           'operator' => 'NOT IN',
+         ),
+       ),
+     )
+   );
+   
+   $smart_links_without_status = array_merge($smart_links_without_status, $batch);
+   $page++;
+ } while (count($batch) === $batch_size);
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 1ae96b9 and a072507.

⛔ Files ignored due to path filters (2)
  • build/content-helper/editor-sidebar.asset.php is excluded by !build/**
  • build/content-helper/editor-sidebar.js is excluded by !build/**
📒 Files selected for processing (6)
  • src/Models/class-inbound-smart-link.php (7 hunks)
  • src/Models/class-smart-link.php (13 hunks)
  • src/content-helper/editor-sidebar/smart-linking/provider.ts (2 hunks)
  • src/content-helper/editor-sidebar/smart-linking/utils.ts (1 hunks)
  • src/rest-api/content-helper/class-endpoint-smart-linking.php (3 hunks)
  • wp-parsely.php (2 hunks)
🚧 Files skipped from review as they are similar to previous changes (4)
  • src/content-helper/editor-sidebar/smart-linking/utils.ts
  • src/content-helper/editor-sidebar/smart-linking/provider.ts
  • src/rest-api/content-helper/class-endpoint-smart-linking.php
  • src/Models/class-inbound-smart-link.php
🧰 Additional context used
📓 Path-based instructions (1)
`**/*.{html,php}`: "Perform a detailed review of the provided code with following key aspects in mind: - Review the HTML and PHP code to ensure it is well-structured and adheres ...

**/*.{html,php}: "Perform a detailed review of the provided code with following key aspects in mind:

  • Review the HTML and PHP code to ensure it is well-structured and adheres to best practices.
  • Ensure the code follows WordPress coding standards and is well-documented.
  • Confirm the code is secure and free from vulnerabilities.
  • Optimize the code for performance, removing any unnecessary elements.
  • Validate comments for accuracy, currency, and adherence to WordPress coding standards.
  • Ensure each line comment concludes with a period.
  • Verify code compatibility with the latest version of WordPress, avoiding deprecated functions or features."
  • wp-parsely.php
  • src/Models/class-smart-link.php
🧬 Code Definitions (1)
wp-parsely.php (3)
src/class-parsely.php (1) (1)
  • Parsely (75-1152)
src/Models/class-smart-link.php (4) (4)
  • Smart_Link (25-1078)
  • get_smart_link_by_id (816-824)
  • set_status (518-528)
  • flush_all_cache (1032-1040)
src/Models/class-inbound-smart-link.php (1) (1)
  • get_smart_link_by_id (1146-1153)
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: E2E against WordPress latest
🔇 Additional comments (15)
src/Models/class-smart-link.php (14)

115-121: Property type change to enhance status management.

This change correctly updates the property type from a boolean applied to a more flexible string|null status, which allows for more granular state representation beyond binary applied/not-applied states.


251-257: Status property initialization added during object loading.

The code now properly initializes the status property using the get_status method when loading a smart link from the database, ensuring consistency with the persisted state.


371-376: Status persistence logic added to save method.

This is a well-structured implementation for saving the smart link status to the database using WordPress taxonomy terms. The code properly validates the status before saving and falls back to a default PENDING status when needed.


402-402: Status reset in delete method.

The status is correctly reset to null when deleting the smart link, maintaining consistency with the object's state.


468-496: New method to retrieve smart link status.

This is a well-implemented method that:

  1. Returns the cached status if valid
  2. Falls back to retrieving from database
  3. Handles error conditions properly
  4. Returns a default PENDING status when needed

The code adheres to WordPress coding standards and includes proper documentation.


498-507: Added is_applied helper method.

This method provides a clean abstraction for checking if a smart link is applied, improving readability throughout the codebase and centralizing status checking logic.


509-528: Added status setter with validation.

Good implementation of a setter method with proper validation. The method:

  1. Validates the status value
  2. Optionally persists to database
  3. Updates the instance property
  4. Throws appropriate exceptions for invalid states

The parameter type hints and return type declarations are correctly used.


739-741: Updated array serialization to include status information.

The serialization now includes both the raw status string and the boolean applied property for backward compatibility, which is a good practice during API transitions.


816-816: Changed visibility of get_smart_link_by_id method from protected to public.

The method visibility has been changed to public to allow external access from the data schema update function. This change follows the principle of minimal permissions needed for the code to work properly.


838-843: Added status validation to get_outbound_smart_links method.

The method now validates the provided status parameter and defaults to 'all' with an appropriate developer warning if an invalid status is provided.


853-876: Enhanced tax query for outbound smart links.

The tax query has been refactored to properly filter by status, allowing for more efficient querying of smart links based on their current state.


935-956: Enhanced tax query for inbound smart links.

Similar to the outbound links, this implementation properly structures the taxonomy query to filter by status when needed.


980-992: Added backward compatibility handling for link status.

This code properly handles the transition from the old boolean-based system to the new status taxonomy by:

  1. Checking if a link is physically linked in the content
  2. Updating its status to match the actual state
  3. Ensuring data consistency

This is important for maintaining functionality during the transition.


1032-1032: Changed visibility of flush_all_cache method from protected to public.

This change allows external components to flush the cache when needed, particularly during the data schema update process. The method's implementation remains unchanged.

wp-parsely.php (1)

52-54: Constants formatting alignment and addition of schema version.

The constants are now properly aligned for better readability, and a new PARSELY_DATA_SCHEMA_VERSION constant has been added to track data schema changes.

Copy link
Collaborator

@acicovic acicovic left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for working on this. I've left a couple of minor comments, but also have 2 questions:

  1. Did you think to rely on plugin version for the update procedure, and if yes, what made you go with a new option instead?
  2. We should think the scenario where the plugin is downgraded. What are your thoughts regarding that?

@vaurdan
Copy link
Contributor Author

vaurdan commented Mar 21, 2025

@acicovic to answer your questions:

Did you think to rely on plugin version for the update procedure, and if yes, what made you go with a new option instead?

That was my initial plan, indeed. However, relying on the plugin version can be tricky in situations where the plugin is downloaded directly through GitHub, for example, where we only bump the version at release. This could be problematic for 3.18.0 beta since it actual version still is 3.17.0, so the schema update would not trigger. And if we need to change the schema in between development builds, this can also become a problem.

That's why I added that new schema version option, so we can track the data layer version separately from the plugin version.

We should think the scenario where the plugin is downgraded. What are your thoughts regarding that?

That's a pretty good question, and TBH I haven't considered that scenario. Right now, it isn't really possible, as AFAIK, it's not possible to trigger specific downgrade steps, since those steps would have need to be defined in the version where it is being downgraded to.

Right now, from my testing (I had to update and downgrade a bunch of times to make sure this was working), what might happen when downgrading is that we lose the data if links have been applied. This means that the queries often return applied smart links as suggestions, and the UI can glitch out here and there. Not great.

I think an easy way to make it backwards compatible, in case of a downgrade, is to not remove any of the existing _smart_link_applied post meta. So that, at the very least, the old plugin version still has that meta field where it can rely to understand if a link has been applied. What do you think?

@acicovic
Copy link
Collaborator

Thanks for explaining about the schema, this makes sense and it's more flexible if we happen to need it.

Regarding the downgrade path, if someone was to apply Smart Links in v3.18 and then go back to v3.17, would this also work for these Smart Links, or only for those who were applied before the upgrade?

@vaurdan
Copy link
Contributor Author

vaurdan commented Mar 21, 2025

If someone downgrades from this version to 3.17.0, I think the only side effect is that all the existing smart links - even pending ones (suggestions) would be treated as applied, since the meta doesn't yet exists on that version, and each Smart Link in the database is actually an applied Smart Link.

However, I'm pretty sure this would be auto-fixed by the Smart Linking feature, as each time there's a save, it parses all the existing Smart Links in the current article, saves those and discards the remaining. So those "applied" - but actually pending - smart links would get removed from the database without the user even realizing.

I will change the PR so it doesn't remove the _smart_link_applied meta tag when running the schema update. I think as far as backwards compatibility with downgrades, is the best we can do.

@acicovic
Copy link
Collaborator

Sounds good, we can probably remove the meta tag in the next major/breaking release and flag it as breaking.

BTW, an alternative approach would be to have a 3.17.1 patch, which executes the inverse procedure (if that is possible). But I think that just keeping the meta is better in this case.

The reason for this discussion is that I think that breaking or non-reversible operations that could bring breakage upon downgrade warrant a major/breaking release. But happy to discuss this further if we want.

@vaurdan vaurdan merged commit 3fc5363 into add/traffic-boost Mar 27, 2025
38 checks passed
@vaurdan vaurdan deleted the update/smart-links-status-taxonomy branch March 27, 2025 10:36
@acicovic acicovic modified the milestones: 3.18.0, 3.19.0 Apr 9, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Feature: Engagement Boost Ticket/PR related to Engagement Boost Feature: PCI Ticket/PR related to Content Intelligence Refactoring Ticket/PR that is or requires a refactoring

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants