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

fix!: return external representation of ontology IRIs in admin routes (DEV-974) #2330

Merged
merged 58 commits into from Jan 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
dd8a088
comment out potentially unused message and receive method for it
BalduinLandolt Dec 7, 2022
d2cf24c
define external representation for ProjectADM
BalduinLandolt Dec 7, 2022
8abdea0
return external representation for getting all projects
BalduinLandolt Dec 7, 2022
35a41ae
return external representation for getting single project by ID
BalduinLandolt Dec 7, 2022
c99d42e
improve documentation
BalduinLandolt Dec 8, 2022
bde5796
fix tests
BalduinLandolt Dec 8, 2022
0fa24f4
minor refactoring
BalduinLandolt Dec 8, 2022
c8587c9
fix Makefile
BalduinLandolt Dec 8, 2022
e42f6e7
refactor some admin code
BalduinLandolt Dec 8, 2022
323727d
remove code smell
BalduinLandolt Dec 8, 2022
691d6a7
fix test data
BalduinLandolt Dec 8, 2022
bbd5b95
improve documentation
BalduinLandolt Dec 8, 2022
dcebfd8
Merge branch 'main' into wip/DEV-974-return-external-iris-in-admin-ro…
BalduinLandolt Dec 12, 2022
734aa1d
more documentation
BalduinLandolt Dec 12, 2022
c0d5457
add documentation
BalduinLandolt Dec 12, 2022
bd66a58
Merge branch 'main' into wip/DEV-974-return-external-iris-in-admin-ro…
BalduinLandolt Dec 13, 2022
6333e71
continue documentation
BalduinLandolt Dec 13, 2022
95732d6
add documentation
BalduinLandolt Dec 13, 2022
970690f
more documentation
BalduinLandolt Dec 13, 2022
5b1a005
remove comments related to v1
Dec 14, 2022
5a87618
fix permissions
Dec 14, 2022
d30c888
Merge branch 'main' into wip/DEV-974-return-external-iris-in-admin-ro…
Dec 15, 2022
ff94548
remove v1 outdated comments
Dec 15, 2022
bf777cb
fix failing tests
Dec 16, 2022
2d8afb1
return external IRIs from projects routes
Dec 16, 2022
336eb77
fmt
Dec 16, 2022
d8de5fd
fix failing tests
Dec 16, 2022
e6260f7
use external iris in permissions routes
Dec 16, 2022
661567e
fix failing v1 test
Dec 19, 2022
115dbc4
use RouteUtilADM to handle response format
Dec 19, 2022
2cd052c
fix failing tests
Dec 20, 2022
1bd5ccf
simplify format
Dec 20, 2022
069634c
fmt
Dec 20, 2022
0e8129d
simplify code
Dec 20, 2022
40ff013
Merge branch 'main' into wip/DEV-974-return-external-iris-in-admin-ro…
Dec 21, 2022
c9ae11a
remove unnecessary transformations to external IRI format
Dec 21, 2022
e4b3059
fmt
Dec 21, 2022
47f9ef2
Update projects.md
Dec 21, 2022
8c0e0ec
Update projects.md
Dec 22, 2022
586e032
Merge branch 'main' into wip/DEV-974-return-external-iris-in-admin-ro…
Dec 22, 2022
a434806
Update projects.md
Dec 22, 2022
583861e
Update projects.md
Dec 22, 2022
f8ffae7
refactor: Extract common code from responders into EntityAndClassIriS…
seakayone Dec 20, 2022
c255db8
Merge branch 'main' into wip/DEV-974-return-external-iris-in-admin-ro…
Jan 2, 2023
12bf156
Merge branch 'wip/DEV-974-return-external-iris-in-admin-routes' of ht…
Jan 2, 2023
c01c925
move response formatting to RouteUtilADM
Jan 2, 2023
cd6b9bf
Merge branch 'main' into wip/DEV-974-return-external-iris-in-admin-ro…
Jan 2, 2023
79a962e
remove whitespace
Jan 2, 2023
c5affc4
cover all cases
Jan 2, 2023
7f4ee41
Merge branch 'main' into wip/DEV-974-return-external-iris-in-admin-ro…
Jan 3, 2023
1fdbb1c
Update webapi/src/it/scala/org/knora/webapi/responders/admin/Permissi…
Jan 3, 2023
9cb13e2
fix codacy warning
Jan 3, 2023
932673a
fix codacy warning
Jan 3, 2023
0c64c48
Update projects.md
Jan 3, 2023
d5e7c20
Update PermissionsResponderADMSpec.scala
Jan 3, 2023
b6d44ad
Update ProjectsResponderADM.scala
Jan 3, 2023
447d924
Update webapi/src/main/scala/org/knora/webapi/responders/admin/Permis…
Jan 3, 2023
ad74065
Merge branch 'main' into wip/DEV-974-return-external-iris-in-admin-ro…
Jan 3, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -93,7 +93,7 @@ stack-up: docker-build env-file ## starts the dsp-stack: fuseki, sipi, api and a
$(CURRENT_DIR)/webapi/scripts/wait-for-api.sh

.PHONY: stack-up-fast
stack-up-fast: docker-build-knora-api-image env-file ## starts the dsp-stack by skipping rebuilding most of the images (only api image is rebuilt).
stack-up-fast: docker-build-dsp-api-image env-file ## starts the dsp-stack by skipping rebuilding most of the images (only api image is rebuilt).
docker-compose -f docker-compose.yml up -d

.PHONY: stack-up-ci
Expand Down