You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ This changelog follows the principles of [Keep a Changelog](https://keepachangel
8
8
9
9
### Added
10
10
11
+
- Collections: Added `allowedDatasetTypes` field to the [Collection](./src/collections/domain/models/Collection.ts) model. This field is optional and only populated the feature is enabled on the installation and configured on the collection.
11
12
- Collections: Added theme information when retrieving a collection using `getCollection`.
12
13
13
14
### Changed
@@ -27,6 +28,9 @@ This changelog follows the principles of [Keep a Changelog](https://keepachangel
27
28
- New Use Case: [Create a Template](./docs/useCases.md#create-a-template) under Templates.
28
29
- New Use Case: [Get a Template](./docs/useCases.md#get-a-template) under Templates.
29
30
- New Use Case: [Delete a Template](./docs/useCases.md#delete-a-template) under Templates.
31
+
- New Use Case: [Update Template Metadata](./docs/useCases.md#update-template-metadata) under Templates.
32
+
- New Use Case: [Update Template License Terms](./docs/useCases.md#update-template-license-terms) under Templates.
33
+
- New Use Case: [Update Template Terms Of Access](./docs/useCases.md#update-template-terms-of-access) under Templates.
30
34
- Templates: Added `setTemplateAsDefault` use case and repository method to support Dataverse endpoint `POST /dataverses/{id}/template/default/{templateId}`.
31
35
- Templates: Added `unsetTemplateAsDefault` use case and repository method to support Dataverse endpoint `DELETE /dataverses/{id}/template/default`.
32
36
- New Use Case: [Update Terms of Access](./docs/useCases.md#update-terms-of-access).
-[Update Template Terms Of Access](#update-template-terms-of-access)
39
42
-[Set Template As Default](#set-template-as-default)
40
43
-[Unset Template As Default](#unset-template-as-default)
41
44
-[Datasets](#Datasets)
@@ -194,6 +197,20 @@ The `collectionIdOrAlias` is a generic collection identifier, which can be eithe
194
197
195
198
If no collection identifier is specified, the default collection identifier; `:root` will be used. If you want to search for a different collection, you must add the collection identifier as a parameter in the use case call.
196
199
200
+
##### Collection Allowed Dataset Types
201
+
202
+
Collections can optionally restrict which [DatasetType](../src/datasets/domain/models/DatasetType.ts) objects can be created within them. The `allowedDatasetTypes` field contains an array of dataset types allowed on the collection when configured. If not configured on the collection, this field will be `undefined`.
0 commit comments