# $Header: /home/cvs/cvsroot/freeside/rt/lib/RT/Condition/AnyTransaction.pm,v 1.1 2002-08-12 06:17:07 ivan Exp $ # Copyright 1996-2001 Jesse Vincent # Released under the terms of the GNU General Public License package RT::Condition::AnyTransaction; require RT::Condition::Generic; @ISA = qw(RT::Condition::Generic); =head2 IsApplicable This happens on every transaction. it's always applicable =cut sub IsApplicable { my $self = shift; return(1); } 1;