0.1;
package RT::DatabaseSetting;
use base 'RT::Record';
use Storable ();
use MIME::Base64;
use JSON ();
=head1 NAME
RT::DatabaseSetting - Represents a config setting
=cut
=head1 METHODS
=head2
tring is passed through as-is.
=item ContentType
Currently handles C<storable> or C<application/json>.
=back
Returns a tuple of (status, msg) on failure and (id, msg) on success.
Also automaticall
urn $self->_DeserializeContent($content);
}
elsif ($type eq 'application/json') {
return $self->_DeJSONContent($content);
}
return ($content, "");
}
=head2 SetContent
=cut