mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-03 14:24:23 +01:00
10 lines
318 B
JavaScript
10 lines
318 B
JavaScript
/**
|
|
* Controller used in abuses management page
|
|
*/
|
|
Application.Controllers.controller('AbusesController', ['$scope', '$state', 'Abuse', 'abusesPromise', 'growl', '_t',
|
|
function ($scope, $state, Abuse, abusesPromise, growl, _t) {
|
|
// List of all reported abuses
|
|
$scope.abuses = abusesPromise.abuses;
|
|
}
|
|
]);
|