angular.module("noteWrangler") .controller("NotesIndexController", ['$scope', 'Note', function ($scope, Note) { $scope.notes = Note.query(); }]);