Skip to content

Commit

Permalink
fix: PR changes
Browse files Browse the repository at this point in the history
  • Loading branch information
anku255 committed Feb 20, 2024
1 parent c764f87 commit 54d9671
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 120 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ void addBulkImportUsers(AppIdentifier appIdentifier, List<BulkImportUser> users)
* Get users from the bulk_import_users table
*/
List<BulkImportUserInfo> getBulkImportUsers(AppIdentifier appIdentifier, @Nonnull Integer limit, @Nullable BulkImportUserStatus status,
@Nullable String bulkImportUserId) throws StorageQueryException;
@Nullable String bulkImportUserId, @Nullable Long createdAt) throws StorageQueryException;

/**
* Delete users by id from the bulk_import_users table
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ public String toString() {

public static class TotpDevice {
public String secretKey;
public Number period;
public Number skew;
public Integer period;
public Integer skew;
public String deviceName;

public TotpDevice(String secretKey, Number period, Number skew, String deviceName) {
public TotpDevice(String secretKey, Integer period, Integer skew, String deviceName) {
this.secretKey = secretKey;
this.period = period;
this.skew = skew;
Expand Down

This file was deleted.

0 comments on commit 54d9671

Please sign in to comment.