OpenFn/OpenFn-Site

View on GitHub
app/assets/javascripts/the_bridge_ng/controllers/team_ctrl.js.coffee

Summary

Maintainability
Test Coverage
@controllerModule.controller 'TeamController', ['$scope', '$location', '$http', '$routeParams', '$timeout', ($scope, $location, $http, $routeParams, $timeout) ->
  $http.get('/team_members/get_all').success((data) ->
    $scope.team = data;
  )
]