Skip to content

Rss stores import reference and checks before importing

Mark Harding requested to merge fix/m4638-rss-dupes into master

Ticket(s) / Related Merge Requests

minds#4638 (closed)

Summary of Changes

Checks against the database if the post has already been imported

Testing Considerations

Deployment Considerations

CREATE TABLE IF NOT EXISTS minds_user_rss_imports(
    tenant_id int,
    feed_id bigint,
    url varchar(512) NOT NULL,
    activity_guid bigint NOT NULL,
    created_timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP(),
    PRIMARY KEY (tenant_id, feed_id, url)
);

Regression Scope

Only related to the RSS imported

Platform Affected (web, mobile, etc)

Developer Testing Completed

Screenshots / Screen Recording

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