Skip to content

Commit

Permalink
[SELC-5960] feat: Changed references to userGroups collection to User…
Browse files Browse the repository at this point in the history
…Groups
  • Loading branch information
empassaro committed Nov 9, 2024
1 parent 6960fa5 commit 91910fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
@ApplicationScoped
public class UserGroupCdcService {
private static final String OPERATION_NAME = "USER-GROUP-CDC-sendUserGroupEvent";
private static final String COLLECTION_NAME = "userGroups";
private static final String COLLECTION_NAME = "UserGroups";

private final TelemetryClient telemetryClient;
private final Integer retryMinBackOff;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

@EqualsAndHashCode(callSuper = true)
@Data
@MongoEntity(collection = "userGroups")
@MongoEntity(collection = "UserGroups")
@FieldNameConstants(asEnum = true)
public class UserGroupEntity extends ReactivePanacheMongoEntity {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
@Data
@NoArgsConstructor
@EqualsAndHashCode(of = "id")
@Document("userGroups")
@Document("UserGroups")
@FieldNameConstants(onlyExplicitlyIncluded = true)
public class UserGroupEntity implements UserGroupOperations {

Expand Down

0 comments on commit 91910fd

Please sign in to comment.