1234567891011121314 |
- angular.module('NoteWrangler').controller('NotesIndexController', function($scope, Note, Session) {
- // Without NgResource
- // Note.all().success(function(data) {
- // $scope.notes = data;
- // });
-
- // With NgResource
- $scope.notes = Note.query();
- Session.sessionData().success(function(sessionUser) {
- // Create a new User from the session user data
- $scope.loggedIn = !!sessionUser;
- });
- });
|