refactored notificatoin / tgsettle responsibility boundaries

This commit is contained in:
Stephan D
2026-02-19 18:56:59 +01:00
parent 47f0a3d890
commit 2fd8a6ebb7
73 changed files with 3705 additions and 681 deletions

View File

@@ -2,7 +2,11 @@ syntax = "proto3";
option go_package = "github.com/tech/sendico/pkg/generated/gmessaging";
// PasswordResetEvent is published when a user requests a password reset.
message PasswordResetEvent {
// account_ref is the unique reference of the account requesting the reset.
string account_ref = 1;
// reset_token is the one-time token the user must present to set a new
// password.
string reset_token = 2;
}
}