Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug 1894939: add bugs for not supported common_ping_data features #1934

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions glean/src/core/pings/common_ping_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,20 @@ export default interface CommonPingData {
readonly reasonCodes?: string[];

// Currently NOT IMPLEMENTED.
//
// NOTE: There are specific bugs for implementing each of these features. If
// these features are implemented later, please move the property out of the
// "NOT IMPLEMENTED" section and remove the bug.

// https://bugzilla.mozilla.org/show_bug.cgi?id=1895297
readonly preciseTimestamps?: boolean;

// https://bugzilla.mozilla.org/show_bug.cgi?id=1895299
readonly includeInfoSections?: boolean;

// https://bugzilla.mozilla.org/show_bug.cgi?id=1895300
readonly enabled?: boolean;

// https://bugzilla.mozilla.org/show_bug.cgi?id=1895302
readonly schedulesPings?: string[];
}