I have a problem writing proper ng-repeat for this object. I would like to display all object properties. There is a main array of apps, each app can have a multiple versions and each version can have multiple users.
Here is object json.
"Awesome App 1": {
"1.16": {
"Steve": [
"[email protected]",
null
],
"Mike": [
"[email protected]",
null
]
}
},
"Awesome App 2": {
"1.7.0": {
"steve": [
"[email protected]",
null
]
}
},
...
Problem is that keys are dynamic and I don`t know how to map it in ng-repeat. Thanks for a help.