Skip to content

Commit 720664c

Browse files
committed
Update README.md
1 parent fa9af0e commit 720664c

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,27 @@ window._env_ = {
3737
};
3838
```
3939

40+
### ⚠️Your database must contain exactly these values, otherwise, you will have to edit something!
41+
```
42+
export interface Employee {
43+
email: string;
44+
firstName: string | null;
45+
lastName: string | null;
46+
fullName: string | null;
47+
groups: string[] | null;
48+
acronym: string;
49+
location: {
50+
countryIsocode: string;
51+
regionIsocode: string
52+
};
53+
displayName: string;
54+
active: boolean;
55+
locked: boolean;
56+
visible: boolean;
57+
}
58+
```
59+
60+
4061
## 🧱Requirements
4162
- NPM
4263
- Node.js

0 commit comments

Comments
 (0)