Skip to content

Commit

Permalink
Merge pull request #36 from no10ds/fix/permissions-not-loading-correctly
Browse files Browse the repository at this point in the history
Hotfix - Permissions not reading correctly
  • Loading branch information
TobyDrane authored Sep 15, 2023
2 parents 2739dcb + bb04044 commit 1ba1c90
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
4 changes: 3 additions & 1 deletion api/api/domain/dataset_filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ def format_resource_query(self):
self.build_key_only_tags(),
self.build_generic_filter(SENSITIVITY, self.sensitivity),
self.build_generic_filter(LAYER, self.layer),
self.build_generic_filter(DOMAIN, self.domain),
self.build_generic_filter(
DOMAIN, self.domain.lower() if self.domain else None
),
]

@combine_conditions
Expand Down
13 changes: 10 additions & 3 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v7.0.3 / v0.1.2 (sdk) - _2023-09-15_

### Fixes

- Fixes issue where permissions were not being correctly read and causing api functionality to fail

## v7.0.2 / v0.1.2 (sdk) - _2023-09-14_

### Fixes
Expand Down Expand Up @@ -33,7 +39,8 @@

- See the [migration doc](migration.md) for details on how to migrate to v7 from v6.

[Unreleased changes]: https://github.com/no10ds/rapid/compare/v7.0.2...HEAD
[v7.0.2 / v0.1.1 (sdk)]: https://github.com/no10ds/rapid/v7.0.1...v7.0.2
[v7.0.1 / v0.1.1 (sdk)]: https://github.com/no10ds/rapid/v7.0.0...v7.0.1
[Unreleased changes]: https://github.com/no10ds/rapid/compare/v7.0.3...HEAD
[v7.0.3 / v0.1.2 (sdk)]: https://github.com/no10ds/rapid/v7.0.2...v7.0.3
[v7.0.2 / v0.1.2 (sdk)]: https://github.com/no10ds/rapid/v7.0.1...v7.0.2
[v7.0.1 / v0.1.2 (sdk)]: https://github.com/no10ds/rapid/v7.0.0...v7.0.1
[v7.0.0 / v0.1.1 (sdk)]: https://github.com/no10ds/rapid/v7.0.0

0 comments on commit 1ba1c90

Please sign in to comment.