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

feature/mx-1702 resolve types in edit view #158

Merged
merged 44 commits into from
Nov 14, 2024
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
8ca3090
first draft
cutoffthetop Sep 18, 2024
35601ab
Merge branch 'main' of https://github.com/robert-koch-institut/mex-ed…
cutoffthetop Sep 18, 2024
7256377
wip
cutoffthetop Sep 25, 2024
686f79e
rework, prepare, clean
cutoffthetop Sep 25, 2024
f49a9d4
add temporal case and up tests
cutoffthetop Sep 30, 2024
2555b67
Merge branch 'main' of https://github.com/robert-koch-institut/mex-ed…
cutoffthetop Sep 30, 2024
30b7fc4
lock
cutoffthetop Sep 30, 2024
a3790f1
Merge branch 'main' of https://github.com/robert-koch-institut/mex-ed…
cutoffthetop Oct 21, 2024
55aaa63
lock
cutoffthetop Oct 21, 2024
872108f
Merge branch 'main' of https://github.com/robert-koch-institut/mex-ed…
cutoffthetop Oct 24, 2024
49969ca
fix merge
cutoffthetop Oct 24, 2024
167cb37
lock
cutoffthetop Oct 25, 2024
c07ccde
lock and lint
cutoffthetop Oct 28, 2024
2493f98
fix handler
cutoffthetop Oct 29, 2024
f7c03fd
update common, pin requests
cutoffthetop Oct 29, 2024
6ef1c5a
Merge branch 'main' of https://github.com/robert-koch-institut/mex-ed…
cutoffthetop Oct 29, 2024
13e72cc
fix tests
cutoffthetop Oct 29, 2024
0724548
lint
cutoffthetop Oct 29, 2024
54aa8b1
fix test
cutoffthetop Oct 29, 2024
1199332
CL
cutoffthetop Oct 29, 2024
b55ea66
fix tests
cutoffthetop Oct 29, 2024
621efbb
include all pngs
cutoffthetop Oct 29, 2024
9acc637
feature/model update v3 (#137)
cutoffthetop Oct 29, 2024
4069837
fix yaml
cutoffthetop Oct 29, 2024
abed263
Merge branch 'feature/mx-1702-resolve-types' of https://github.com/ro…
cutoffthetop Oct 29, 2024
078887f
CL
cutoffthetop Oct 30, 2024
14df0c5
try multiprocessing.Process
cutoffthetop Oct 30, 2024
891d955
add ResettingGraphConnector to fix tests
cutoffthetop Oct 30, 2024
3ee21ba
enhance log msgs
cutoffthetop Oct 31, 2024
99fc450
make frontend_url a fixture for tests
cutoffthetop Oct 31, 2024
e05ba89
Update ghcr.io/robert-koch-institut/mex-backend Docker tag to v0.21.0…
RKIMetadataExchange Nov 4, 2024
f483a7e
Merge branch 'feature/mx-1702-resolve-types' of https://github.com/ro…
cutoffthetop Nov 4, 2024
6a615c7
Merge remote-tracking branch 'origin/main' into feature/mx-1703-resol…
cutoffthetop Nov 8, 2024
c10be8a
lint
cutoffthetop Nov 8, 2024
89e84ef
Update CHANGELOG.md
cutoffthetop Nov 14, 2024
c63dde7
fix docstr
cutoffthetop Nov 14, 2024
5c52a9d
Update tests/test_transform.py
cutoffthetop Nov 14, 2024
e8430d2
Update tests/test_transform.py
cutoffthetop Nov 14, 2024
7fbb1c5
bail on rendering null
cutoffthetop Nov 14, 2024
1e0977a
Merge branch 'feature/mx-1702-resolve-types' of https://github.com/ro…
cutoffthetop Nov 14, 2024
ea66218
Merge branch 'main' of https://github.com/robert-koch-institut/mex-ed…
cutoffthetop Nov 14, 2024
ec64850
add transform tests
cutoffthetop Nov 14, 2024
d6beb76
update tests
cutoffthetop Nov 14, 2024
550a942
add transform_models_to_preview empty test case
cutoffthetop Nov 14, 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
feature/model update v3 (#137)
# PR Context
- needs robert-koch-institut/mex-common#207

# Added
<!-- New features and interfaces -->

# Changes
- updated the model config for preview of search results for model v3

# Deprecated
<!-- Soon-to-be removed features -->

# Removed
<!-- Definitely removed features -->

# Fixed
<!-- Fixed bugs -->

# Security
<!-- Fixed vulnerabilities -->

Co-authored-by: Franziska Diehr <[email protected]>
  • Loading branch information
cutoffthetop and fdiehr authored Oct 29, 2024
commit 9acc63747f339a8cbd333796d3517cc2e8d534ab
30 changes: 27 additions & 3 deletions mex/editor/models.yaml
Original file line number Diff line number Diff line change
@@ -1,43 +1,67 @@
AccessPlatform:
title: title
preview:
- alternativeTitle
- contact
- unitInCharge
- endpointType
- technicalAccessibility
Activity:
title: title
preview:
- shortName
- contact
- responsibleUnit
- start
- end
BibliographicResource:
title: title
preview:
- bibliographicResourceType
- publicationYear
- creator
- accessRestriction
ContactPoint:
title: email
Distribution:
title: title
preview:
- mediaType
- issued
- accessRestriction
Organization:
title: officialName
preview:
- shortName
- alternativeName
- wikidataId
OrganizationalUnit:
title: shortName
preview:
- name
Person:
title: fullName
preview:
- givenName
- familyName
- memberOf
- email
- orcidId
PrimarySource:
title: title
preview:
- unitInCharge
- contact
- unitInCharge
Resource:
title: title
preview:
- unitInCharge
- wasGeneratedBy
- theme
- resourceCreationMethod
- accessRestriction
Variable:
title: label
preview:
- dataType
- belongsTo
- usedIn
VariableGroup:
Expand Down
Loading