Bugzilla – Attachment 111419 Details for
Bug 26636
Add objects.find Mojolicious helper
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 26636: Add objects.find helper
Bug-26636-Add-objectsfind-helper.patch (text/plain), 1.21 KB, created by
Agustín Moyano
on 2020-10-09 17:24:23 UTC
(
hide
)
Description:
Bug 26636: Add objects.find helper
Filename:
MIME Type:
Creator:
Agustín Moyano
Created:
2020-10-09 17:24:23 UTC
Size:
1.21 KB
patch
obsolete
>From a8409b4ec4efb7863e7fe5179faf87c0f8595113 Mon Sep 17 00:00:00 2001 >From: Agustin Moyano <agustinmoyano@theke.io> >Date: Fri, 9 Oct 2020 10:20:33 -0300 >Subject: [PATCH] Bug 26636: Add objects.find helper > >This patch adds the objects.find helper. Much like objects.search, it >returns the to_api method with embedded children and expanded authorised >values. > >This patch will be implemented in bug 8179, so please test there >--- > Koha/REST/Plugin/Objects.pm | 12 ++++++++++++ > 1 file changed, 12 insertions(+) > >diff --git a/Koha/REST/Plugin/Objects.pm b/Koha/REST/Plugin/Objects.pm >index 7c9ef75555..a8d200d0cc 100644 >--- a/Koha/REST/Plugin/Objects.pm >+++ b/Koha/REST/Plugin/Objects.pm >@@ -44,6 +44,18 @@ for API rendering. > sub register { > my ( $self, $app ) = @_; > >+ $app->helper( >+ 'objects.find' => sub { >+ my ( $c, $result_set, $id ) = @_; >+ >+ # Look for embeds >+ my $embed = $c->stash('koha.embed'); >+ my $object = $result_set->find( $id ); >+ >+ return $object->to_api({ embed => $embed, av_expand => $c->req->headers->header('x-koha-av') }); >+ } >+ ); >+ > $app->helper( > 'objects.search' => sub { > my ( $c, $result_set ) = @_; >-- >2.25.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 26636
:
111418
|
111419
|
116222
|
116223
|
116224
|
116225
|
116226
|
116227
|
116228
|
116229
|
116230
|
116231
|
116594
|
116595
|
116596
|
116597
|
116598
|
117669
|
117670
|
117671
|
117672
|
117673
|
127528
|
127529
|
127530
|
127531
|
127532