1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

feat: select definer in view creation/edit

This commit is contained in:
2020-12-29 10:35:46 +01:00
parent 0df2b836b1
commit ab307f82b1
7 changed files with 98 additions and 15 deletions

View File

@ -0,0 +1,8 @@
'use strict';
import { ipcRenderer } from 'electron';
export default class {
static getUsers (params) {
return ipcRenderer.invoke('get-users', params);
}
}