Bugzilla – Attachment 39159 Details for
Bug 13799
Add base for building RESTful API
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 13799: Add versioning to API
Bug-13799-Add-versioning-to-API.patch (text/plain), 2.71 KB, created by
Benjamin Rokseth
on 2015-05-13 20:26:24 UTC
(
hide
)
Description:
Bug 13799: Add versioning to API
Filename:
MIME Type:
Creator:
Benjamin Rokseth
Created:
2015-05-13 20:26:24 UTC
Size:
2.71 KB
patch
obsolete
>From 8ce24ca7e723ae82ce0ac063e1b1b75b8301626a Mon Sep 17 00:00:00 2001 >From: Julian Maurice <julian.maurice@biblibre.com> >Date: Tue, 17 Mar 2015 08:09:38 +0100 >Subject: [PATCH] Bug 13799: Add versioning to API > >--- > Koha/{REST.pm => REST/V1.pm} | 4 ++-- > rest.json => Koha/REST/V1.swagger | 6 +++--- > Koha/REST/{ => V1}/Borrowers.pm | 2 +- > rest => rest/v1 | 2 +- > 4 files changed, 7 insertions(+), 7 deletions(-) > rename Koha/{REST.pm => REST/V1.pm} (82%) > rename rest.json => Koha/REST/V1.swagger (94%) > rename Koha/REST/{ => V1}/Borrowers.pm (92%) > rename rest => rest/v1 (57%) > >diff --git a/Koha/REST.pm b/Koha/REST/V1.pm >similarity index 82% >rename from Koha/REST.pm >rename to Koha/REST/V1.pm >index b657b20..3c17dcf 100644 >--- a/Koha/REST.pm >+++ b/Koha/REST/V1.pm >@@ -1,4 +1,4 @@ >-package Koha::REST; >+package Koha::REST::V1; > > use Modern::Perl; > use Mojo::Base 'Mojolicious'; >@@ -18,7 +18,7 @@ sub startup { > > $self->plugin(Swagger2 => { > route => $route, >- url => $self->home->rel_file("rest.json"), >+ url => $self->home->rel_file("Koha/REST/V1.swagger"), > }); > } > >diff --git a/rest.json b/Koha/REST/V1.swagger >similarity index 94% >rename from rest.json >rename to Koha/REST/V1.swagger >index 849a518..c592f03 100644 >--- a/rest.json >+++ b/Koha/REST/V1.swagger >@@ -2,7 +2,7 @@ > "swagger": "2.0", > "info": { > "title": "Koha REST API", >- "version": "0.1", >+ "version": "1", > "license": { > "name": "GPL v3", > "url": "http://www.gnu.org/licenses/gpl.txt" >@@ -16,7 +16,7 @@ > "paths": { > "/borrowers": { > "get": { >- "x-mojo-controller": "Koha::REST::Borrowers", >+ "x-mojo-controller": "Koha::REST::V1::Borrowers", > "operationId": "listBorrowers", > "produces": [ > "application/json" >@@ -36,7 +36,7 @@ > }, > "/borrowers/{borrowernumber}": { > "get": { >- "x-mojo-controller": "Koha::REST::Borrowers", >+ "x-mojo-controller": "Koha::REST::V1::Borrowers", > "operationId": "getBorrower", > "parameters": [ > { >diff --git a/Koha/REST/Borrowers.pm b/Koha/REST/V1/Borrowers.pm >similarity index 92% >rename from Koha/REST/Borrowers.pm >rename to Koha/REST/V1/Borrowers.pm >index 438cbbc..332cdeb 100644 >--- a/Koha/REST/Borrowers.pm >+++ b/Koha/REST/V1/Borrowers.pm >@@ -1,4 +1,4 @@ >-package Koha::REST::Borrowers; >+package Koha::REST::V1::Borrowers; > > use Modern::Perl; > >diff --git a/rest b/rest/v1 >similarity index 57% >rename from rest >rename to rest/v1 >index 520733f..55ce87d 100644 >--- a/rest >+++ b/rest/v1 >@@ -3,4 +3,4 @@ > use Modern::Perl; > > require Mojolicious::Commands; >-Mojolicious::Commands->start_app('Koha::REST'); >+Mojolicious::Commands->start_app('Koha::REST::V1'); >-- >1.7.10.4
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 13799
:
36700
|
36705
|
36938
|
36941
|
37119
|
37132
|
37172
|
38246
|
39156
|
39158
|
39159
|
39160
|
39161
|
39162
|
39163
|
39164
|
40088
|
40092
|
40093
|
40094
|
40098
|
40099
|
40101
|
40140
|
40141
|
40142
|
40463
|
40464
|
40465
|
40466
|
40467
|
40468
|
40469
|
40470
|
40471
|
40551
|
40552
|
40553
|
40554
|
40560
|
40561
|
40584
|
40585
|
40586
|
40587
|
40616
|
40617
|
40618
|
40619
|
41160
|
41161
|
41162
|
41268
|
41269
|
41270
|
41271
|
41272
|
41273
|
41274
|
41320
|
41321
|
41326
|
41327
|
41328
|
41329
|
41330
|
41331
|
41538
|
41539
|
41540
|
41541
|
41542
|
41543
|
41547
|
41554
|
42044
|
42085
|
42086
|
42123
|
42518
|
42766
|
42768
|
42801
|
42874
|
42875
|
42876
|
42877
|
42878
|
43186
|
43187
|
43189
|
43190
|
43191
|
43192
|
43204
|
43205
|
43206
|
43207
|
43208
|
43209
|
43210
|
43211
|
43212
|
43213
|
43214
|
43980
|
43981
|
43987
|
43989
|
43990
|
43991
|
43992
|
43993
|
43994
|
43995
|
43996
|
43997
|
43998
|
43999
|
44000
|
44001
|
44185
|
44285
|
44313
|
44375
|
44376
|
44377
|
44378
|
44379
|
44380
|
44381
|
44382
|
44383
|
44384
|
44385