redash/client/app/pages/destinations/list.js
Arik Fraimovich b5e2234234 Set title
2016-11-27 15:49:17 +02:00

20 lines
460 B
JavaScript

import template from './list.html';
function DestinationsCtrl($scope, $location, toastr, currentUser, Events, Destination) {
Events.record('view', 'page', 'admin/destinations');
$scope.destinations = Destination.query();
}
export default function (ngModule) {
ngModule.controller('DestinationsCtrl', DestinationsCtrl);
return {
'/destinations': {
template,
controller: 'DestinationsCtrl',
title: 'Destinations',
},
};
}