use OpenILS::Utils::Editor q/:funcs/;
use OpenILS::Utils::CStoreEditor q/:funcs/;
use OpenILS::Const qw/:const/;
+use OpenSRF::Utils::SettingsClient;
my $apputils = "OpenILS::Application::AppUtils";
my $U = $apputils;
}
+__PACKAGE__->register_method(
+ method => 'fetch_circ_mods',
+ api_name => 'open-ils.circ.circ_modifier.retrieve.all'
+);
+
+sub fetch_circ_mods {
+ my $conf = OpenSRF::Utils::SettingsClient->new;
+ return $conf->config_value(
+ 'apps', 'open-ils.circ', 'app_settings', 'circ_modifiers', 'mod' );
+}
+
+
# ------------------------------------------------------------------------
# Returns an array of {circ, record} hashes checked out by the user.
# ------------------------------------------------------------------------