mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
Fix schema
This commit is contained in:
parent
973bb5c39f
commit
62efedaf27
|
@ -498,7 +498,9 @@ impl Schema {
|
||||||
SchemaClass {
|
SchemaClass {
|
||||||
name: String::from("object"),
|
name: String::from("object"),
|
||||||
description: String::from("A system created class that all objects must contain"),
|
description: String::from("A system created class that all objects must contain"),
|
||||||
systemmay: vec![],
|
systemmay: vec![
|
||||||
|
String::from("principal_name"),
|
||||||
|
],
|
||||||
may: vec![],
|
may: vec![],
|
||||||
systemmust: vec![String::from("uuid")],
|
systemmust: vec![String::from("uuid")],
|
||||||
must: vec![],
|
must: vec![],
|
||||||
|
@ -626,7 +628,6 @@ impl Schema {
|
||||||
systemmust: vec![
|
systemmust: vec![
|
||||||
String::from("class"),
|
String::from("class"),
|
||||||
String::from("name"),
|
String::from("name"),
|
||||||
String::from("principal_name"),
|
|
||||||
String::from("displayname"),
|
String::from("displayname"),
|
||||||
],
|
],
|
||||||
must: vec![],
|
must: vec![],
|
||||||
|
@ -643,7 +644,6 @@ impl Schema {
|
||||||
systemmust: vec![
|
systemmust: vec![
|
||||||
String::from("class"),
|
String::from("class"),
|
||||||
String::from("name"),
|
String::from("name"),
|
||||||
String::from("principal_name"),
|
|
||||||
],
|
],
|
||||||
must: vec![],
|
must: vec![],
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue