Skip to content

Commit

Permalink
automatic chores (27258f4) πŸ“ [skip-ci]
Browse files Browse the repository at this point in the history
This is a commit done by the GitHub action https://github.com/Puzzlepart/did/blob/dev/.github/workflows/automatic_chores.yml. This way we avoid having to generate documentation, run eslint etc. locally before commiting to the repo. See #903 for more details.
  • Loading branch information
github-automatic-chores committed May 2, 2024
1 parent 27258f4 commit 0165100
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<br />


[![version](https://img.shields.io/badge/version-0.13.3-13-green.svg)](https://semver.org)
[![version](https://img.shields.io/badge/version-0.13.3-14-green.svg)](https://semver.org)

<details>
<summary>πŸ“– Table of Contents</summary>
Expand Down
10 changes: 8 additions & 2 deletions server/graphql/resolvers/project/ProjectResolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,14 @@ export class ProjectResolver {
const { projects } = await this._projectSvc.getProjectsData(
{
$or: [
{ [`extensions.${extensionId}.properties.resources.id`]: context.userId },
{ [`extensions.${extensionId}.properties.projectOwner`]: context.userId }
{
[`extensions.${extensionId}.properties.resources.id`]:
context.userId
},
{
[`extensions.${extensionId}.properties.projectOwner`]:
context.userId
}
]
},
{
Expand Down

0 comments on commit 0165100

Please sign in to comment.