Skip to content

Supporting hiding posts (boosts) - #2479

Mark Harding requested to merge feat/2479-hide-boosts into master

Ticket(s) / Related Merge Requests

#2479 (closed)

Summary of Changes

Allows users to mark a post as hidden, and excludes from showing in boosts again.

Testing Considerations

This is only actionable from the new boost slots. On the dropdown of a post, click hide boost.

Deployment Considerations

Apply the new table

CREATE TABLE IF NOT EXISTS entities_hidden
(
    user_guid bigint NOT NULL,
    entity_guid bigint NOT NULL,
    created_at timestamp NOT NULL default CURRENT_TIMESTAMP,
    PRIMARY KEY (user_guid, entity_guid)
) ENGINE=InnoDB;

Regression Scope

This is a new feature

Platform Affected (web, mobile, etc)

Developer Testing Completed

@markharding 👍

Screenshots / Screen Recording

Screenshot_2022-12-22_at_13.51.31

Does this impact

  • Localization
  • Dark/light mode
  • Guest mode

Definition of Done Checklist

  • The Acceptance Criteria has been met
  • Code is tested: Testing includes unit/spec, E2E/automated and manual testing
  • Merge requests description has been filled out

Merge request reports