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

(-)a/Koha/REST/V1/OAuth.pm (-3 lines)
Lines 48-55 sub token { Link Here
48
        expires_in   => $expires_in,
48
        expires_in   => $expires_in,
49
    );
49
    );
50
50
51
    my $at = Koha::OAuthAccessTokens->search({ access_token => $token })->next;
52
53
    my $response = {
51
    my $response = {
54
        access_token => $token,
52
        access_token => $token,
55
        token_type => 'Bearer',
53
        token_type => 'Bearer',
56
- 

Return to bug 20402