notes-index-controller.js 154 B

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