30 lines
767 B
JavaScript
30 lines
767 B
JavaScript
|
import ngModule from '../module';
|
||
|
import ModuleCard from 'salix/components/module-card';
|
||
|
|
||
|
class Controller extends ModuleCard {
|
||
|
reload() {
|
||
|
const filter = {
|
||
|
fields: ['chatName', 'notificationEmail'],
|
||
|
include: [
|
||
|
{
|
||
|
relation: 'client',
|
||
|
scope: {fields: ['name']}
|
||
|
},
|
||
|
{
|
||
|
relation: 'worker',
|
||
|
scope: {fields: ['name']}
|
||
|
}
|
||
|
|
||
|
]
|
||
|
};
|
||
|
|
||
|
this.$http.get(`Departments/${this.$params.id}`, {filter})
|
||
|
.then(res => this.department = res.data);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ngModule.vnComponent('vnWorkerDepartmentCard', {
|
||
|
template: require('./index.html'),
|
||
|
controller: Controller
|
||
|
});
|