Skip to content

Commit

Permalink
fix: move ListAvailableItemTypes to ManagementService (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
getinnocuous authored Dec 5, 2024
1 parent ef58d48 commit 40c6b17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions account.proto
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,6 @@ service AdminService {
// control the associated private key also in order to connect to NATS as
// the token is not enough on its own
rpc CreateToken(AdminCreateTokenRequest) returns (CreateTokenResponse);

// Lists all the available item types that can be discovered by sources that are running and healthy
rpc ListAvailableItemTypes(ListAvailableItemTypesRequest) returns (ListAvailableItemTypesResponse);
}

// TODO: Decide if I should have the admin requests return the exact same
Expand Down Expand Up @@ -180,6 +177,9 @@ service ManagementService {
rpc RevlinkWarmup(RevlinkWarmupRequest) returns (stream RevlinkWarmupResponse);

rpc GetTrialEnd(GetTrialEndRequest) returns (GetTrialEndResponse);

// Lists all the available item types that can be discovered by sources that are running and healthy
rpc ListAvailableItemTypes(ListAvailableItemTypesRequest) returns (ListAvailableItemTypesResponse);
}

enum SourceStatus {
Expand Down

0 comments on commit 40c6b17

Please sign in to comment.