Changes
4 changed files (+45/-0)
-
-
@@ -0,0 +1,13 @@// SPDX-FileCopyrightText: 2025 Shota FUJI <pockawoooh@gmail.com> // SPDX-License-Identifier: AGPL-3.0-only edition = "2023"; package yamori.backend.events.workspace.v1; option go_package = "pocka.jp/x/yamori/proto/go/backend/events/workspace/v1"; message CustomAttributeDefined { string id = 1; string display_name = 2; }
-
-
-
@@ -0,0 +1,14 @@// SPDX-FileCopyrightText: 2025 Shota FUJI <pockawoooh@gmail.com> // SPDX-License-Identifier: AGPL-3.0-only edition = "2023"; package yamori.backend.events.workspace.v1; option go_package = "pocka.jp/x/yamori/proto/go/backend/events/workspace/v1"; message CustomAttributeSet { string custom_attribute_id = 1; string user_id = 2; string value = 3; }
-
-
-
@@ -0,0 +1,12 @@// SPDX-FileCopyrightText: 2025 Shota FUJI <pockawoooh@gmail.com> // SPDX-License-Identifier: AGPL-3.0-only edition = "2023"; package yamori.backend.events.workspace.v1; option go_package = "pocka.jp/x/yamori/proto/go/backend/events/workspace/v1"; message CustomAttributeUndefined { string id = 1; }
-
-
-
@@ -10,6 +10,9 @@ import "yamori/backend/events/workspace/v1/admin_access_granted.proto";import "yamori/backend/events/workspace/v1/admin_access_revoked.proto"; import "yamori/backend/events/workspace/v1/admin_creation_password_expired.proto"; import "yamori/backend/events/workspace/v1/admin_creation_password_generated.proto"; import "yamori/backend/events/workspace/v1/custom_attribute_defined.proto"; import "yamori/backend/events/workspace/v1/custom_attribute_set.proto"; import "yamori/backend/events/workspace/v1/custom_attribute_undefined.proto"; import "yamori/backend/events/workspace/v1/login_jwt_secret_configured.proto"; import "yamori/backend/events/workspace/v1/password_login_configured.proto"; import "yamori/backend/events/workspace/v1/user_created.proto";
-
@@ -32,5 +35,8 @@ WorkspaceDisplayNameSet workspace_display_name_set = 8;UserPermissionsGranted user_permissions_granted = 9; UserPermissionsRevoked user_permissions_revoked = 10; AbbreviationsConfigured abbreviations_configured = 11; CustomAttributeDefined custom_attribute_defined = 12; CustomAttributeUndefined custom_attribute_undefined = 13; CustomAttributeSet custom_attribute_set = 14; } }
-