initial-commit

This commit is contained in:
Guillaume GRABÉ
2026-05-12 17:06:43 +02:00
commit 051a080dfa
110 changed files with 26377 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
syntax = "proto3";
package charybdis.plugins.keycloak;
// Keycloak plugin metadata
// Used for plugin-specific sync status entities
message KeycloakMetadata {
string name = 1;
string description = 2;
// Resource type (user, group)
string resource_type = 3;
// Keycloak realm this resource belongs to
string realm = 4;
}
// Keycloak plugin spec
message KeycloakSpec {
// Sync status information
string sync_status = 1;
string last_sync = 2;
string error_message = 3;
// Configuration stored as JSON
string config_json = 4;
}