Minimum Report Character Count
//Report types are optional
BugReporting.setCommentMinimumCharacterCountForReportTypes([.bug, .feedback, .question], withLimit:3)//Report types are optional
[LCQBugReporting setCommentMinimumCharacterCountForReportTypes:LCQBugReportingReportTypeBug | LCQBugReportingReportTypeFeedback | LCQBugReportingReportTypeQuestion withLimit:3];BugReporting.setCommentMinimumCharacterCount(20, ReportType.BUG, ReportType.FEEDBACK, ReportType.QUESTION);BugReporting.setCommentMinimumCharacterCount(20, ReportType.BUG, ReportType.FEEDBACK, ReportType.QUESTION)// All report types
BugReporting.setCommentMinimumCharacterCount(20);
// Specific reports
BugReporting.setCommentMinimumCharacterCount(20, [
BugReporting.reportType.bug,
BugReporting.reportType.feedback,
BugReporting.reportType.question
]);// For all report types
BugReporting.setCommentMinimumCharacterCount(20);
// For specific report types
BugReporting.setCommentMinimumCharacterCount(20, [ReportType.bug, ReportType.feedback, ReportType.question]);.bug
.feedback
.questionLCQBugReportingReportTypeBug
LCQBugReportingReportTypeFeedback
LCQBugReportingReportTypeQuestionReportType.BUG
ReportType.FEEDBACK
ReportType.QUESTIONBugReporting.reportType.bug
BugReporting.reportType.feedback
BugReporting.reportType.questionReportType.bug
ReportType.feedback
ReportType.questionLast updated