Skip to content
Merged
Show file tree
Hide file tree
Changes from 32 commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
835e8ed
added authorization to individual tiles
nitrosx Jun 30, 2026
7859692
first draft of the e2e test
nitrosx Jun 30, 2026
2375b20
fixed linting
nitrosx Jul 1, 2026
97dfc72
Merge branch 'master' into detaset_tile_access
nitrosx Jul 1, 2026
61b2d7d
fixed linting
nitrosx Jul 1, 2026
a2e8a12
fixed e2e test
nitrosx Jul 1, 2026
448d431
added authorization to individual tiles
nitrosx Jun 30, 2026
752db8f
first draft of the e2e test
nitrosx Jun 30, 2026
d89a73a
fixed linting
nitrosx Jul 1, 2026
3d03bee
fixed e2e test
nitrosx Jul 1, 2026
5416fd4
feat(dataset-detail): add lock icon for restricted tiles with config …
nitrosx Jul 25, 2026
25b07da
docs(dataset-detail): add Restricted Tiles Indicator documentation
nitrosx Jul 25, 2026
567050e
refactor(dataset-detail): ensure sections have authorization field de…
nitrosx Jul 25, 2026
472a2be
test(dataset-detail): configure showRestrictedTilesIndicator for e2e …
nitrosx Jul 25, 2026
78b615a
test(dataset-detail): add assertions for lock icon visibility in e2e …
nitrosx Jul 25, 2026
c127a17
addressed comments and added restricted access indicator
nitrosx Jul 25, 2026
708656f
resolved conflicts
nitrosx Jul 25, 2026
cc0f459
resoled conflicts
nitrosx Jul 25, 2026
d493f34
Merge branch 'master' of https://github.com/SciCatProject/frontend in…
nitrosx Jul 29, 2026
1c9f316
fixed failing tests
nitrosx Jul 29, 2026
0c8a700
Merge branch 'master' into detaset_tile_access
nitrosx Jul 29, 2026
08cf355
implemented new configuration for tile authorization and indicator icon
nitrosx Aug 5, 2026
27c1b5c
updated documentation
nitrosx Aug 5, 2026
0cb2bcc
Updated config and test data
nitrosx Aug 6, 2026
ee2956d
work in progress
nitrosx Aug 6, 2026
663ad1f
updated tests
nitrosx Aug 6, 2026
aed4526
Merge branch 'master' into detaset_tile_access
nitrosx Aug 7, 2026
8fcaf10
fixed linting and unit tests
nitrosx Aug 7, 2026
94a3d3e
fixed linting
nitrosx Aug 7, 2026
b13e90d
Merge branch 'master' of https://github.com/SciCatProject/frontend in…
nitrosx Aug 10, 2026
ee5175b
fixed and renumbered tests
nitrosx Aug 10, 2026
4b65ff5
added configuration to CI
nitrosx Aug 11, 2026
f698ae5
Fixed linting
nitrosx Aug 17, 2026
3afc9bb
updated admin json forms configuration
nitrosx Aug 17, 2026
280599e
fixed configurations and linting
nitrosx Aug 17, 2026
d222df1
updated documentation and refernces to configuratiojn
nitrosx Aug 17, 2026
908c94f
updated documentation
nitrosx Aug 17, 2026
684ec8e
fixed linting and tests
nitrosx Aug 17, 2026
59085eb
wip on e2e tests
nitrosx Aug 17, 2026
0e8db67
updated documentation
nitrosx Aug 17, 2026
c535e13
solving test failing
nitrosx Aug 18, 2026
d4e4dec
refactor failing test
nitrosx Aug 18, 2026
879e262
fixing tests
nitrosx Aug 18, 2026
f5abb96
Merge branch 'master' into detaset_tile_access
nitrosx Aug 18, 2026
7d834f5
updated description in admin panel and order of tiles
nitrosx Aug 18, 2026
a69f1bd
Merge branch 'detaset_tile_access' of https://github.com/SciCatProjec…
nitrosx Aug 18, 2026
207042d
Merge branch 'master' into detaset_tile_access
nitrosx Aug 18, 2026
11a6425
added theme 5 variables to e2e frontend them
nitrosx Aug 20, 2026
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
92 changes: 92 additions & 0 deletions CI/e2e/frontend.config.e2e.json
Original file line number Diff line number Diff line change
Expand Up @@ -730,9 +730,101 @@
},
"dateFormat": "yyyy-MM-dd HH:mm",
"timezone": "UTC",
"tileRestrictedIconVisibile": true,
"tileRestrictedIconGroups": [
"admin"
],
"datasetDetailComponent": {
"enableCustomizedComponent": false,
"customization": [
{
"type": "regular",
"label": "Admin Only Section",
"order": 1,
"row": 1,
"col": 10,
"visible": true,
"authorization": [
"admin"
],
"fields": [
{
"element": "text",
"source": "datasetName",
"order": 0
},
{
"element": "copy",
"source": "description",
"order": 1
}
]
},
{
"type": "regular",
"label": "Public Section",
"order": 2,
"row": 1,
"col": 10,
"visible": true,
"authorization": [],
"fields": [
{
"element": "text",
"source": "ownerEmail",
"order": 0
},
{
"element": "tag",
"source": "keywords",
"order": 1
}
]
},
{
"type": "regular",
"label": "Archive Manager Section",
"order": 3,
"row": 1,
"col": 10,
"visible": true,
"authorization": [
"archivemanager"
],
"fields": [
{
"element": "text",
"source": "type",
"order": 0
},
{
"element": "date",
"source": "creationTime",
"order": 1
}
]
},
{
"type": "regular",
"label": "Invisible Section",
"order": 4,
"row": 1,
"col": 10,
"visible": false,
"authorization": [],
"fields": [
{
"element": "text",
"source": "type",
"order": 0
},
{
"element": "date",
"source": "creationTime",
"order": 1
}
]
},
{
"type": "regular",
"label": "General Information",
Expand Down
Loading
Loading