actually fetch the data, oops :P
This commit is contained in:
parent
26e475eb0c
commit
eb9063fe19
|
@ -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",
|
||||||
|
|
|
@ -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', {
|
||||||
|
|
Loading…
Reference in New Issue