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

(-)a/Koha/REST/V1/OAuth.pm (-1 / +12 lines)
Lines 24-29 use Koha::OAuth; Link Here
24
24
25
use Mojo::Base 'Mojolicious::Controller';
25
use Mojo::Base 'Mojolicious::Controller';
26
26
27
=head1 NAME
28
29
Koha::REST::V1::OAuth - Controller library for handling OAuth2-related token handling
30
31
=head2 Operations
32
33
=head3 token
34
35
Controller method handling token requests
36
37
=cut
38
27
sub token {
39
sub token {
28
40
29
    my $c = shift->openapi->valid_input or return;
41
    my $c = shift->openapi->valid_input or return;
30
- 

Return to bug 20624