fix: Add owner to labels

This commit is contained in:
Anton Stubenbord
2023-05-11 16:23:15 +02:00
parent f388f77d63
commit fd1c0ced35
11 changed files with 155 additions and 226 deletions

View File

@@ -19,6 +19,8 @@ abstract class Label extends Equatable implements Comparable {
final MatchingAlgorithm matchingAlgorithm;
final bool? isInsensitive;
final int? documentCount;
final int? owner;
final bool? userCanChange;
const Label({
this.id,
@@ -28,6 +30,8 @@ abstract class Label extends Equatable implements Comparable {
this.isInsensitive = true,
this.documentCount,
this.slug,
this.owner,
this.userCanChange,
});
Label copyWith({