Bugzilla – Attachment 116228 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.44 KB, created by
Andrew Fuerste-Henry
on 2021-02-02 19:55:22 UTC
(
hide
)
Description:
Bug 26636: Add objects.find helper
Filename:
MIME Type:
Creator:
Andrew Fuerste-Henry
Created:
2021-02-02 19:55:22 UTC
Size:
1.44 KB
patch
obsolete
>From af457127b3b3074a97a1f2654953ad22a0921315 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. > >Sponsored-by: Virginia Tech Libraries > >Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com> >--- > Koha/REST/Plugin/Objects.pm | 22 ++++++++++++++++++++++ > 1 file changed, 22 insertions(+) > >diff --git a/Koha/REST/Plugin/Objects.pm b/Koha/REST/Plugin/Objects.pm >index 246aece704..635f6d08c7 100644 >--- a/Koha/REST/Plugin/Objects.pm >+++ b/Koha/REST/Plugin/Objects.pm >@@ -45,6 +45,28 @@ sub register { > my ( $self, $app ) = @_; > > $app->helper( >+ 'objects.find' => sub { >+ my ( $c, $result_set, $id ) = @_; >+ >+ my $attributes = {}; >+ >+ # Look for embeds >+ my $embed = $c->stash('koha.embed'); >+ # Generate prefetches for embedded stuff >+ $c->dbic_merge_prefetch( >+ { >+ attributes => $attributes, >+ result_set => $result_set >+ } >+ ); >+ >+ my $object = $result_set->find( $id, $attributes ); >+ >+ return $object->to_api({ embed => $embed }); >+ } >+ ); >+ >+ $app->helper( > 'objects.search' => sub { > my ( $c, $result_set ) = @_; > >-- >2.11.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