mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-16 04:12:32 -06:00
fix: Add owner to labels
This commit is contained in:
@@ -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({
|
||||
|
||||
Reference in New Issue
Block a user