@xuda.io/account_module 1.2.834 → 1.2.835
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.mjs +2 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -417,7 +417,8 @@ export const increment_account_usage = async function (req) {
|
|
|
417
417
|
const team_ret = await db_module.get_couch_view('xuda_team', 'user_group_shares_count', {
|
|
418
418
|
key: app.id,
|
|
419
419
|
reduce: true,
|
|
420
|
-
group_level: 1,
|
|
420
|
+
// group_level: 1,
|
|
421
|
+
group: true,
|
|
421
422
|
});
|
|
422
423
|
|
|
423
424
|
const team_members = team_ret.data.rows?.[0]?.value || 0;
|