class EnterpriseMessageThread extends Directive('hn.enterprise')
    constructor: () ->
        return {
            scope: {
                thread: '='
            },
            replace: true
            templateUrl: '/modules/enterprise/components/enterprise_message_thread/enterprise_message_thread.html'
            controllerAs: 'vm'
            bindToController: true
            ### @ngInject ###
            controller: (Session) ->
                vm = @
                vm.active_user_id = Session.user.id
        }
