File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ + (NSMutableDictionary *) getAll {
14
14
[all addEntriesFromDictionary: ArgsRegistry.recordButtonPositions];
15
15
[all addEntriesFromDictionary: ArgsRegistry.welcomeMessageStates];
16
16
[all addEntriesFromDictionary: ArgsRegistry.reportTypes];
17
+ [all addEntriesFromDictionary: ArgsRegistry.sdkDimissReportTypes];
17
18
[all addEntriesFromDictionary: ArgsRegistry.dismissTypes];
18
19
[all addEntriesFromDictionary: ArgsRegistry.actionTypes];
19
20
[all addEntriesFromDictionary: ArgsRegistry.extendedBugReportStates];
@@ -112,6 +113,15 @@ + (ArgsDictionary *) reportTypes {
112
113
};
113
114
}
114
115
116
+ + (ArgsDictionary *) sdkDimissReportTypes {
117
+ return @{
118
+ @" bugReportingReportTypeBug" : @(IBGReportTypeBug),
119
+ @" bugReportingReportTypeFeedback" : @(IBGReportTypeFeedback),
120
+ @" bugReportingReportTypeQuestion" : @(IBGReportTypeQuestion),
121
+ @" bugReportingReportTypeOther" : @(IBGReportTypeOther),
122
+ };
123
+ }
124
+
115
125
+ (ArgsDictionary *) dismissTypes {
116
126
return @{
117
127
@" dismissTypeSubmit" : @(IBGDismissTypeSubmit),
You can’t perform that action at this time.
0 commit comments