Skip to content

Commit

Permalink
Merge branch 'main' of github.com:OpenConext/OpenConext-Invite into main
Browse files Browse the repository at this point in the history
  • Loading branch information
phavekes committed Mar 14, 2024
2 parents 5165aad + 8aafb76 commit eed491d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ jobs:
uses: ardalanamini/auto-changelog@v3
with:
default-commit-type: New Features
github-token: ${{ github.token }}
if: github.event_name != 'workflow_dispatch'

- name: Create release
Expand All @@ -165,6 +166,7 @@ jobs:
prerelease: true
release_name: Release ${{ github.ref_name }}
tag_name: ${{ github.ref_name }}
github-token: ${{ github.token }}
body: |
${{ steps.changelog.outputs.changelog }}
env:
Expand Down
4 changes: 0 additions & 4 deletions server/src/main/java/access/model/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,6 @@ public class User implements Serializable, Provisionable {
@OneToMany(mappedBy = "user", orphanRemoval = true, fetch = FetchType.EAGER, cascade = CascadeType.ALL)
private Set<UserRole> userRoles = new HashSet<>();

@OneToMany(mappedBy = "user", orphanRemoval = true, fetch = FetchType.LAZY, cascade = CascadeType.ALL)
@JsonIgnore
private Set<RemoteProvisionedUser> remoteProvisionedUsers = new HashSet<>();

@Transient
private List<Map<String, Object>> applications = Collections.emptyList();

Expand Down
1 change: 0 additions & 1 deletion server/src/main/java/access/voot/VootController.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package access.voot;

import access.aggregation.AttributeAggregatorController;
import access.model.Role;
import access.model.User;
import access.model.UserRole;
Expand Down

0 comments on commit eed491d

Please sign in to comment.