Skip to content

Setup stripe - minds#4626

Mark Harding requested to merge feat/minds-4626-stripe into master

Ticket(s) / Related Merge Requests

minds#4626 (closed)

Summary of Changes

Allows for a tenant admin to configure stripe creds

Testing Considerations

Test adding keys (they need to be real!)

Deployment Considerations

CREATE TABLE IF NOT EXISTS minds_stripe_keys(
    tenant_id int PRIMARY KEY,
    pub_key varchar(128),
    sec_key_cipher_text varchar(256),
    created_timestamp timestamp DEFAULT CURRENT_TIMESTAMP(),
    updated_timestamp timestamp NULL
);

Regression Scope

Minimal, although this does touch the Stripe api configs

Platform Affected (web, mobile, etc)

API

Developer Testing Completed

Schema changes: @markharding locally

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

Merge request reports