How to create admin in kodular for firebase authentication?

{  "rules": {    "adminContent": {      ".read": "auth.token.admin === true",      ".write": "auth.token.admin === true",    }  }}
1 Like