DBIx-Class-AuditLog
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
lib/DBIx/Class/AuditLog.pm view on Meta::CPAN
my ( $action, $table ) = $self->_action_setup( $result, 'insert' );
if ($action) {
my %column_data = $result->get_columns;
$self->_store_changes( $action, $table, {}, \%column_data );
}
return $result;
}
sub update {
my $self = shift;
return $self->next::method(@_) if !$enabled;
my $stored_row = $self->get_from_storage;
my %new_data = $self->get_columns;
my @changed_columns = keys %{ $_[0] || {} };
my $result = $self->next::method(@_);
lib/DBIx/Class/ResultSet/AuditLog.pm view on Meta::CPAN
use warnings;
use base "DBIx::Class::ResultSet";
sub delete {
shift->delete_all;
};
sub update {
shift->update_all(@_);
}
1;
__END__
=pod
=encoding UTF-8
view all matches for this distributionview release on metacpan - search on metacpan
( run in 0.577 second using v1.00-cache-2.02-grep-82fe00e-cpan-4673cadbf75 )