Skip to content

Commit

Permalink
fix: admin update type lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronvoell committed May 22, 2024
1 parent 00a1510 commit b532dba
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions proto/mls/database/intents.proto
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,11 @@ message UpdateMetadataData {

// Type of update to admin lists
enum AdminListUpdateType {
ADD_ADMIN = 0;
REMOVE_ADMIN = 1;
ADD_SUPER_ADMIN = 2;
REMOVE_SUPER_ADMIN = 3;
ADMIN_LIST_UPDATE_TYPE_UNSPECIFIED = 0;
ADMIN_LIST_UPDATE_TYPE_ADD_ADMIN = 1;
ADMIN_LIST_UPDATE_TYPE_REMOVE_ADMIN = 2;
ADMIN_LIST_UPDATE_TYPE_ADD_SUPER_ADMIN = 3;
ADMIN_LIST_UPDATE_TYPE_REMOVE_SUPER_ADMIN = 4;
}

// The data required to update group admin/super admin lists
Expand Down

0 comments on commit b532dba

Please sign in to comment.