mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-06 05:52:18 +00:00
Changes (#195)
* Changes added * Reading of events for applications changed. * Proto changed * Tests added * Added more tests. * Struct for Data expanded with additional fields. * refactoring * Changes from review. * Merge in to Master * Changes from review. * fix: generate proto Co-authored-by: Fabiennne <fabienne.gerschwiler@gmail.com>
This commit is contained in:
@@ -170,7 +170,7 @@ service ManagementService {
|
||||
|
||||
rpc ApplicationChanges(ChangeRequest) returns (Changes) {
|
||||
option (google.api.http) = {
|
||||
get: "/applications/{id}/changes"
|
||||
get: "/projects/{id}/applications/{sec_id}/changes"
|
||||
};
|
||||
|
||||
option (caos.zitadel.utils.v1.auth_option) = {
|
||||
@@ -1235,8 +1235,9 @@ service ManagementService {
|
||||
|
||||
message ChangeRequest {
|
||||
string id = 1;
|
||||
uint64 limit= 2;
|
||||
uint64 sequence_offset = 3;
|
||||
string sec_id = 2;
|
||||
uint64 limit= 3;
|
||||
uint64 sequence_offset = 4;
|
||||
}
|
||||
|
||||
message Changes {
|
||||
|
||||
Reference in New Issue
Block a user