Introduce filter_by instead of authorized_only

Change-Id: Ifc3e24147da5ebaf66215939d26812bf97edc3e0
diff --git a/lib/Kalamar/Plugin/Auth.pm b/lib/Kalamar/Plugin/Auth.pm
index 7844157..489b246 100644
--- a/lib/Kalamar/Plugin/Auth.pm
+++ b/lib/Kalamar/Plugin/Auth.pm
@@ -533,7 +533,7 @@
       return $c->korap_request(post => $r_url, {} => form => {
         super_client_id => $client_id,
         super_client_secret => $client_secret,
-        authorized_only => 'no'
+        filter_by => 'owned_only'
       })->then(
         sub {
           my $tx = shift;
diff --git a/t/server/mock.pl b/t/server/mock.pl
index e9e91d4..e64f14e 100644
--- a/t/server/mock.pl
+++ b/t/server/mock.pl
@@ -695,6 +695,9 @@
   $v->required('super_client_id');
   $v->required('super_client_secret');
 
+  $v->optional('filter_by' );
+  $v->optional('authorized_only' );
+
   if ($v->has_error) {
     return $c->render(
       json => [],