mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-02-16 19:37:07 +01:00
18 lines
664 B
JavaScript
18 lines
664 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
angular
|
|
.module('tickets')
|
|
.controller('MessageTicketController', MessageTicketController);
|
|
|
|
MessageTicketController.$inject = ['$scope', '$state', '$timeout', '$translate', 'Authentication', 'SystemsService', 'ModalConfirmService', 'NotifycationService', 'marked',
|
|
'DebugConsoleService', 'MeanTorrentConfig', '$filter'];
|
|
|
|
function MessageTicketController($scope, $state, $timeout, $translate, Authentication, SystemsService, ModalConfirmService, NotifycationService, marked,
|
|
mtDebug, MeanTorrentConfig, $filter) {
|
|
var vm = this;
|
|
vm.user = Authentication.user;
|
|
|
|
}
|
|
}());
|