Skip to content

Commit 91f48e7

Browse files
committed
add timestamp to feature flags
1 parent f5219a3 commit 91f48e7

File tree

1 file changed

+4
-1
lines changed
  • src/bitdrift_public/fbs/issue-reporting/v1

1 file changed

+4
-1
lines changed

src/bitdrift_public/fbs/issue-reporting/v1/report.fbs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,9 +369,12 @@ table SDKInfo {
369369
}
370370

371371
table FeatureFlag {
372+
// The name of the feature flag
372373
name:string;
373-
374+
// The value of the feature flag, as a string
374375
value:string;
376+
// The time the feature flag was last modified
377+
timestamp:Timestamp;
375378
}
376379

377380
table Report {

0 commit comments

Comments
 (0)