You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// SkipEnrichmentAttribute is the DSL attribute for skipping auth-service enrichment on
392
+
// committee member writes (email→username lookup and profile metadata backfill).
393
+
funcSkipEnrichmentAttribute() {
394
+
dsl.Attribute("skip_enrichment", dsl.Boolean, "When true, skip auth-service enrichment: the username, name, and avatar from the request body are stored as-is without email→username lookup or profile metadata backfill. Intended for trusted sync callers.", func() {
395
+
dsl.Default(false)
396
+
dsl.Example(true)
397
+
})
398
+
}
399
+
391
400
// CreatedAtAttribute is the DSL attribute for creation timestamp.
392
401
funcCreatedAtAttribute() {
393
402
dsl.Attribute("created_at", dsl.String, "The timestamp when the resource was created (read-only)", func() {
0 commit comments