0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Wired up tkReminders flag in Admin+editor (#19074)

refs https://github.com/TryGhost/Ghost/pull/19057

- the flag and toggle UI had been added but we were missing the final part of wiring up the feature in Admin and passthrough to the editor
This commit is contained in:
Kevin Ansfield 2023-11-21 11:10:28 +00:00 committed by GitHub
parent baa62c0bed
commit 2f07af05cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -293,7 +293,8 @@ export default class KoenigLexicalEditor extends Component {
feature: {
collectionsCard: this.feature.get('collectionsCard'),
collections: this.feature.get('collections'),
emojiPicker: this.feature.get('editorEmojiPicker')
emojiPicker: this.feature.get('editorEmojiPicker'),
tkReminders: this.feature.get('tkReminders')
},
depreciated: {
headerV1: true // if false, shows header v1 in the menu

View file

@ -80,6 +80,7 @@ export default class FeatureService extends Service {
@feature('editorEmojiPicker') editorEmojiPicker;
@feature('filterEmailDisabled') filterEmailDisabled;
@feature('adminXDemo') adminXDemo;
@feature('tkReminders') tkReminders;
_user = null;