https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37056

Brendan Lawlor <blaw...@clamsnet.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #167610|0                           |1
        is obsolete|                            |

--- Comment #5 from Brendan Lawlor <blaw...@clamsnet.org> ---
Created attachment 167617
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=167617&action=edit
Bug 37056: Mount a new intranet_svc api to avoid redirects

When an unauthroized call to svc is made, we use the ErrorDocument middleware
to respond with an HTML
page. The API doens't do this, it simply returns its status. We should mount
the svc as it own app to avoid
the redirect to HTML for unauthroized responses

To test:
1 - Create a report
2 - Add to IntranetUserJs:
    $(document).ready(function() {
      // Your report ID
      var reportId = '492';

      // Fetch the report
      $.get('/cgi-bin/koha/svc/report?id=' + reportId, function(data) {
        console.log('Kaboom');
      });
    });
3 - Log out
4 - Attempt to login
5 - KO
6 - Apply patch
7 - Reset all (or copy the necessary changes to your plack/apache files)
8 - Generate report and update user js again
8 - Logout, login
9 - Success!

Signed-off-by: Brendan Lawlor <blaw...@clamsnet.org>

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to