Skip to content

Commit

Permalink
chore(ios): enable sharing feature flags
Browse files Browse the repository at this point in the history
  • Loading branch information
autoreleasefool committed Jun 16, 2024
1 parent ffd2aff commit c02d31a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ios/Approach/Sources/FeatureFlagsLibrary/FeatureFlags.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ extension FeatureFlag {
public static let developerOptions = Self(name: "developerOptions", introduced: "2022-11-10", stage: .development, isOverridable: false)
public static let teams = Self(name: "teams", introduced: "2023-01-03", stage: .development)
public static let opponentDetails = Self(name: "opponentDetails", introduced: "2023-08-18", stage: .development)
public static let sharingGame = Self(name: "sharingGame", introduced: "2023-08-29", stage: .development)
public static let sharingSeries = Self(name: "sharingSeries", introduced: "2023-08-29", stage: .development)
public static let sharingGame = Self(name: "sharingGame", introduced: "2023-08-29", stage: .release)
public static let sharingSeries = Self(name: "sharingSeries", introduced: "2023-08-29", stage: .release)
public static let alleyAndGearAverages = Self(name: "alleyAndGearAverages", introduced: "2023-09-12", stage: .development)
public static let proSubscription = Self(name: "proSubscription", introduced: "2023-08-08", stage: .development)
public static let purchases = Self(name: "purchase", introduced: "2023-09-15", stage: .disabled)
public static let dataImport = Self(name: "dataImport", introduced: "2023-09-17", stage: .development)
public static let preBowlForm = Self(name: "preBowlForm", introduced: "2024-03-23", stage: .release)
public static let manualSeries = Self(name: "manualSeries", introduced: "2024-03-28", stage: .release)
public static let sharingStatistic = Self(name: "sharingStatistic", introduced: "2024-04-27", stage: .development)
public static let sharingStatistic = Self(name: "sharingStatistic", introduced: "2024-04-27", stage: .release)

public static let allFlags: [Self] = [
.alleyAndGearAverages,
Expand Down

0 comments on commit c02d31a

Please sign in to comment.