Skip to content

Commit

Permalink
BUGFIX:
Browse files Browse the repository at this point in the history
+- fixed comments
[WTEL-4046]:
+ SearchSystemSetting added name filter
  • Loading branch information
Dtsnko committed Jun 11, 2024
1 parent 2493db3 commit 51d90fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chat/messages/contacts.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import "protoc-gen-openapiv2/options/annotations.proto";

// API used to connect the external user to our internal contact
service ContactLinkingService {
// LinkContactToClient creates connection between existing internal contact and external client.
// LinkContactToClient creates connection between existing internal contact and external client ().
rpc LinkContactToClient(LinkContactToClientRequest) returns (EmptyResponse) {
option (google.api.http) = {
post: "/chat/{conversation_id}/link"
Expand All @@ -21,7 +21,7 @@ service ContactLinkingService {
post: "/chat/{conversation_id}/contact"
};
}
// CreateContactFromConversation[No Authorization] creates new contact from the data existing in the conversation and after that links this contact to the external user.
// LinkContactToClientNA[No Authorization] creates connection between existing internal contact and external client (overrides existing).
rpc LinkContactToClientNA(LinkContactToClientNARequest) returns (LinkContactToClientNAResponse) {}
}

Expand Down
2 changes: 2 additions & 0 deletions engine/system_settings.proto
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ message SearchSystemSettingRequest {

string sort = 5;
repeated string fields = 6;

repeated string name = 7;
}

message ListSystemSetting {
Expand Down

0 comments on commit 51d90fe

Please sign in to comment.