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
@Entity
public class Application extends PanacheEntityBase {
@Id
public Long id;
...
}
@Entity
public class ApplicationRole extends PanacheEntityBase {
@Id
public Long id;
@ManyToOne(fetch = FetchType.LAZY)
@NotNull
public Application application;
...
}
public interface ApplicationRoles extends PanacheEntityResource<ApplicationRole, Long> {
}
For may use cases it would like to call /application-roles?application=2
This would be a great addition and is much easier than #28450
Thanks a lot!
Implementation ideas
No response
The text was updated successfully, but these errors were encountered:
Description
Consider the following typical setup:
For may use cases it would like to call
/application-roles?application=2
This would be a great addition and is much easier than #28450
Thanks a lot!
Implementation ideas
No response
The text was updated successfully, but these errors were encountered: