View | Details | Raw Unified | Return to bug 37043
Collapse All | Expand All

(-)a/Koha/REST/V1/ERM/EUsage/CounterRegistry.pm (-1 / +1 lines)
Lines 47-53 sub list { Link Here
47
47
48
    my $search_string = $query_params_array[0]->{name};
48
    my $search_string = $query_params_array[0]->{name};
49
49
50
    my $url     = 'https://registry.projectcounter.org/api/v1/platform/';
50
    my $url     = 'https://registry.countermetrics.org/api/v1/platform/';
51
    my $request = HTTP::Request->new(
51
    my $request = HTTP::Request->new(
52
        GET => $url,
52
        GET => $url,
53
    );
53
    );
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersFormAdd.vue (-1 / +1 lines)
Lines 338-344 Link Here
338
                        </li>
338
                        </li>
339
                        <span
339
                        <span
340
                            >{{ $__("Please refer to the ") }}
340
                            >{{ $__("Please refer to the ") }}
341
                            <a href="https://registry.projectcounter.org/">{{
341
                            <a href="https://registry.countermetrics.org/">{{
342
                                $__("COUNTER registry")
342
                                $__("COUNTER registry")
343
                            }}</a>
343
                            }}</a>
344
                            {{ $__("for more information.") }}</span
344
                            {{ $__("for more information.") }}</span
(-)a/t/db_dependent/api/v1/erm_sushi_services.t (-2 / +1 lines)
Lines 42-48 t::lib::Mocks::mock_preference( 'RESTBasicAuth', 1 ); Link Here
42
subtest 'get() tests' => sub {
42
subtest 'get() tests' => sub {
43
    plan tests => 5;
43
    plan tests => 5;
44
44
45
    my $service_url = "https://registry.projectcounter.org/api/v1/sushi-service/b94bc981-fa16-4bf6-ba5f-6c113f7ffa0b/";
45
    my $service_url = "https://registry.countermetrics.org/api/v1/sushi-service/b94bc981-fa16-4bf6-ba5f-6c113f7ffa0b/";
46
    my @expected_fields = (
46
    my @expected_fields = (
47
        "api_key_info",
47
        "api_key_info",
48
        "api_key_required",
48
        "api_key_required",
49
- 

Return to bug 37043