WIP: (feat): Minds Pro
0/1 thread resolved
added Product::Pro Squad::Yellow scoped labels
assigned to @IanCrossland
added MR::Requires Changes scoped label
added 1 commit
- 79f1c4b4 - (fix): Add missing x-version from CORS header
added 1 commit
- acb9a1ac - (fix): Scheme not being set on CORS origin header
added 13 commits
- ae4fcdaf...fd67bc47 - 12 commits from branch
master
- 74fd5f90 - Merge remote-tracking branch 'origin/master' into epic/minds-pro
- ae4fcdaf...fd67bc47 - 12 commits from branch
added 1 commit
- 31683298 - (feat): added default tile ratio for pro settings
added 1 commit
- 90466971 - (feat): Allow admins to edit Pro settings; Custom <head> support
added 1 commit
- c12f0683 - (feat): XSRF token sync between domains using JWT
added 1 commit
- f036dd03 - (feat): added in new more_transparent_background_color
added 14 commits
- f036dd03...c736d788 - 13 commits from branch
master
- a72df16f - Merge remote-tracking branch 'origin/master' into epic/minds-pro
- f036dd03...c736d788 - 13 commits from branch
added 1 commit
- 53acfc54 - (feat): implement caching layer for homepage content
added 10 commits
- 53acfc54...9251d5cf - 8 commits from branch
master
- faeede82 - (chore): Add Pro entry to feature settings
- 5460503c - Merge remote-tracking branch 'origin/master' into epic/minds-pro
- 53acfc54...9251d5cf - 8 commits from branch
added 1 commit
- 1b600e0b - (fix): Ensure cached content is served correctly
added 1 commit
- bf5c71db - (refactor): Cache tag breakdown content instead of top Pro feed
added 1 commit
- 754c3a2d - (feat): auto-subscribe on login and signup when on pro standalone
added 1 commit
- 53ccb4e5 - (fix): only record subscription if it actually subscribed
added 1 commit
- 6b39b7d8 - (feat): moved v2/feeds/channel to v2/pro/content
added 1 commit
- 79b26e40 - (fix): correctly save colours & allow empty logo_guid
added 1 commit
- a5eb0ba3 - (chore): Add missing frontends config to Pro Domain
added 4 commits
- a5eb0ba3...91c223dc - 3 commits from branch
master
- 1a67287a - Merge remote-tracking branch 'origin/master' into epic/minds-pro
- a5eb0ba3...91c223dc - 3 commits from branch
1 <?php 2 /** 3 * Jwt 4 * @author edgebal 5 */ 6 7 namespace Minds\Common; 8 9 use Exception; 10 use Firebase\JWT\JWT as FirebaseJWT; - Owner
This is using legacy JWT library. We should be using the new JWT library used by Core/Sessions/Manager, Core/Security/SignedUri.php etc. The new one is the
Lcobucci\JWT
library