p0licat / vcs-query-tool

Framework written in #Java which eases management of multiple VCS.
GNU General Public License v3.0
0 stars 0 forks source link

Attach REST controller to Git service. #13

Closed p0licat closed 2 years ago

p0licat commented 2 years ago

POST should trigger fetches. In XML caching of data... (Serializable) GET forwards data to queue.

DbService: POST should access GET from GitService. GET should be used by FE.

p0licat commented 2 years ago

Step 1: create a GET route in the GitService which returns data obtained from Git (serialized).

p0licat commented 2 years ago

Step 1: create a GET route in the GitService which returns data obtained from Git (serialized).

d1e14a0 Performed step which gets repositories of user with a GET method.

p0licat commented 2 years ago

Step 2: create a POST route in DbService which uses the GET route (calls) from first service.