Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add interfaces and types for bulk import #138

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
rishabhpoddar marked this conversation as resolved.
Show resolved Hide resolved
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.

Loading