1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-20 00:35:17 +00:00

Users can report their own generated content (thanks Google Play reviewers)

This commit is contained in:
2022-08-04 13:45:10 +02:00
parent a24bb147c8
commit c5ee235ebd
6 changed files with 21 additions and 6 deletions

View File

@ -151,8 +151,13 @@ class ReportCause {
class ReportPolicy {
final List<ReportCause> causes;
final int maxCommentLength;
final bool canUserReportHisOwnContent;
const ReportPolicy({required this.causes, required this.maxCommentLength});
const ReportPolicy({
required this.causes,
required this.maxCommentLength,
required this.canUserReportHisOwnContent,
});
}
class ServerConfig {