Since i put a unique key in my Local Storage, I am not so sure if i have to reference it in the view
//Model
$localStorage['uniqueKey'] =[{id:1, name:"foo"}, {id:2, name:"bar"}]
// Controller
$scope.users = $localStorage['uniqueKey'];
//View --> do I have to refer to the unique Key?? or this is okay?????????
<li ng-repeat="user in users">
{{user.name}}
</li>