Skip to content

Tenant custom pages minds#4503

Olivia Madrid requested to merge feat/tenant-custom-policies-m4503 into master

Ticket(s) / Related Merge Requests

minds#4503 (closed)

Summary of Changes

See front MR

In addition, community guidelines was formerly stored with tenant configs, but now it is stored with the other custom pages

Testing Considerations

See front MR

Deployment Considerations

I presume mobile team needs to know that this is ready

New mysql table added:

CREATE TABLE IF NOT EXISTS  minds_custom_pages(
    `tenant_id` int NOT NULL,
    `page_type` varchar(64) NOT NULL,
    `content` text DEFAULT NULL,
    `external_link` text DEFAULT NULL,
    created_timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP(),
    updated_timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP(),
    PRIMARY KEY (`tenant_id`, `page_type`)
);

Regression Scope

Platform Affected (web, mobile, etc)

Both

Developer Testing Completed

See front MR

Screenshots / Screen Recording

See front MR

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
Edited by Mark Harding

Merge request reports