Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop open : Label/api-dbsder #135

Closed
wants to merge 39 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
ab5fa63
feat: remplacement des appel à la bd par l'api dbsder
Aug 23, 2024
f58a719
feat: remplacement des appel à la bd par l'api dbsder
Aug 23, 2024
6c9d535
fix: suppression des fichiers de config de l'api
Aug 23, 2024
a4a881b
fix: suppression des fichiers de config de l'api
Aug 23, 2024
860124c
feat: remplacement des appel à la bd par l'api dbsder
Aug 23, 2024
1c81a14
chore: suppresion des appels à la bd
Sep 3, 2024
e8804e7
chore: removing sder
Sep 9, 2024
6676b20
chore: replaced sder package with dbsder-api-types
Sep 10, 2024
cafad93
chore: updated package version
Sep 23, 2024
1d02366
chore: cleanup and dbsder api
Oct 15, 2024
f64f0f5
feat: label dbsder api
Oct 15, 2024
3145278
ci: env deploy
Oct 16, 2024
e382d41
ci: env deploy
s-diallo Oct 16, 2024
77ac458
ci: build fix
s-diallo Oct 16, 2024
fb364dc
ci: env deploy
Oct 16, 2024
7b3531d
fix: label back api url
Oct 16, 2024
6655f46
fix: dbsder legacy update
Oct 17, 2024
b71bd22
ci: revert env open files
Oct 18, 2024
b8a24ab
fix: added status code 204 as success
Oct 18, 2024
52679be
doc: code clean
Oct 18, 2024
3b87e6e
fix: lint
Oct 18, 2024
c63ba8d
Merge branch 'develop-open-dbsder' of ssh://git.boost.open.global:443…
Oct 18, 2024
05fd2c9
fix: clean code
Nov 12, 2024
32681ee
fix: endpoints call from dbsder with dateType and remove publishStatus
Nov 13, 2024
8cfde31
update: LabelTreatment call in label from dbsder-api-types v1.6.2
Nov 14, 2024
e1adb33
fix: lint
Nov 15, 2024
af770e2
Merge branch 'back-client-dbsder' of ssh://git.boost.open.global:443/…
Nov 15, 2024
6c99156
update:
Nov 15, 2024
4b3d1c6
update: implement call to dbsder or static files in sderLocalApi
Nov 15, 2024
0c6c197
Merge branch 'back-client-dbsder' of ssh://git.boost.open.global:443/…
Nov 18, 2024
d4a47af
fix: dbsder api call
Nov 18, 2024
b129a91
fix: dbsder-api-types version
Nov 18, 2024
0d207ad
fix: setCourt decision endpoint path
Nov 19, 2024
f70b6f3
fix: removed sso files
Nov 19, 2024
6e77e8c
Merge branch 'back-client-dbsder' into 'develop-open-dbsder'
s-diallo Nov 20, 2024
85b2f12
clean: sonar properties file
s-diallo Nov 20, 2024
9be6a80
fix: Label/api-dbsder - data mapping - numeroRoleGeneral
Dec 23, 2024
b9c310f
Merge branch 'bugfix/CASSLAB' into 'develop-open-dbsder'
s-diallo Dec 23, 2024
f6854d7
clean: clean
s-diallo Dec 23, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: added status code 204 as success
  • Loading branch information
Ivan Lemovou committed Oct 18, 2024
commit b8a24ab29cfe39cee7bc1fe54c0c7ffe04e86e34
2 changes: 1 addition & 1 deletion packages/courDeCassation/src/sderApi/sderLocalApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ async function fetchApi({
},
})
.then((response: AxiosResponse) => {
if (response.status != 200) {
if (response.status != 200 && response.status != 204) {
throw new Error(`${response.status} ${response.statusText}`);
} else {
return response.data as Record<string, unknown>;
Expand Down