summaryrefslogtreecommitdiff
path: root/FS/FS/queue_arg.pm
diff options
context:
space:
mode:
Diffstat (limited to 'FS/FS/queue_arg.pm')
-rw-r--r--FS/FS/queue_arg.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/FS/FS/queue_arg.pm b/FS/FS/queue_arg.pm
index c96ff12..8e9a10d 100644
--- a/FS/FS/queue_arg.pm
+++ b/FS/FS/queue_arg.pm
@@ -36,6 +36,8 @@ FS::Record. The following fields are currently supported:
=item jobnum - see L<FS::queue>
+=item frozen - argument is frozen with Storable
+
=item arg - argument
=back
@@ -96,6 +98,7 @@ sub check {
my $error =
$self->ut_numbern('argnum')
|| $self->ut_numbern('jobnum')
+ || $self->ut_enum('frozen', [ '', 'Y' ])
|| $self->ut_anything('arg')
;
return $error if $error;