22 lines
498 B
JavaScript
22 lines
498 B
JavaScript
|
import ngModule from '../module';
|
||
|
import Section from 'salix/components/section';
|
||
|
|
||
|
class Controller extends Section {
|
||
|
constructor($element, $) {
|
||
|
super($element, $);
|
||
|
}
|
||
|
|
||
|
async $onInit() {
|
||
|
const url = await this.vnApp.getUrl(`worker/${this.$params.id}/notifications`);
|
||
|
window.open(url).focus();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ngModule.vnComponent('vnWorkerNotifications', {
|
||
|
template: require('./index.html'),
|
||
|
controller: Controller,
|
||
|
bindings: {
|
||
|
ticket: '<'
|
||
|
}
|
||
|
});
|