Gate feed known likers as a beta feature

This commit is contained in:
vineyardbovines
2026-08-28 10:24:27 -04:00
parent e32d8c3395
commit 18cf1b17fb
2 changed files with 16 additions and 13 deletions
-13
View File
@@ -1,13 +0,0 @@
---
description: Keep pull request descriptions limited to a concise summary of the changes
alwaysApply: true
---
# Pull Request Descriptions
When creating or editing a pull request description:
- Include only a concise summary of the changes.
- Do not mention Linear tickets or issue identifiers.
- Do not include validation, testing, or verification steps.
- Do not add boilerplate sections that duplicate information available elsewhere.
+16
View File
@@ -77,6 +77,22 @@ export function getFeatures() {
export function getFeatureDescription(feature: Features, i18n: I18n) {
switch (feature) {
case Features.PostFeedKnownLikersEnable:
return {
key: feature,
name: i18n._(
msg({
message: 'Social proofing on posts',
comment: 'Name for a feature flag',
}),
),
description: i18n._(
msg({
message: 'Spot posts your friends and follows have liked.',
comment: 'Description of a feature flag (Social proofing on posts)',
}),
),
}
case Features.CanonicalPostNumberingEnable:
return {
key: feature,