actually fetch the data, oops :P

This commit is contained in:
ThatOneCalculator 2022-09-13 17:35:08 -07:00
parent 26e475eb0c
commit eb9063fe19
2 changed files with 5 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "calckey", "name": "calckey",
"version": "12.119.0-calc-rc.9", "version": "12.119.0-calc-rc.10",
"codename": "aqua", "codename": "aqua",
"repository": { "repository": {
"type": "git", "type": "git",

View file

@ -54,7 +54,8 @@ watch(() => props.groupId, () => {
fetch(); fetch();
}); });
function fetch() {
async function fetch() {
os.api('users/groups/show', { os.api('users/groups/show', {
groupId: props.groupId, groupId: props.groupId,
}).then(gp => { }).then(gp => {
@ -67,6 +68,8 @@ function fetch() {
}); });
} }
fetch();
function invite() { function invite() {
os.selectUser().then(user => { os.selectUser().then(user => {
os.apiWithDialog('users/groups/invite', { os.apiWithDialog('users/groups/invite', {