mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-26 20:34:02 +03:00
d720851ec6
refs 8d97bdec6e
- Had a stray code commited in refed commit
40 lines
1.5 KiB
JavaScript
40 lines
1.5 KiB
JavaScript
// NOTE: to support a new config in the limit service add an empty key-object pair in the export below.
|
|
// Each type of limit has it's own structure:
|
|
// 1. FlagLimit and AllowlistLimit types are empty objects paired with a key, e.g.: `customThemes: {}`
|
|
// 2. MaxLimit should contain a `currentCountQuery` function which would count the resources under limit
|
|
module.exports = {
|
|
members: {
|
|
currentCountQuery: async (db) => {
|
|
let result = await db.knex('members').count('id', {as: 'count'}).first();
|
|
return result.count;
|
|
}
|
|
},
|
|
staff: {
|
|
currentCountQuery: async (db) => {
|
|
let result = await db.knex('users')
|
|
.select('users.id')
|
|
.leftJoin('roles_users', 'users.id', 'roles_users.user_id')
|
|
.leftJoin('roles', 'roles_users.role_id', 'roles.id')
|
|
.whereNot('roles.name', 'Contributor').andWhereNot('users.status', 'inactive').union([
|
|
db.knex('invites')
|
|
.select('invites.id')
|
|
.leftJoin('roles', 'invites.role_id', 'roles.id')
|
|
.whereNot('roles.name', 'Contributor')
|
|
]);
|
|
|
|
return result.length;
|
|
}
|
|
},
|
|
customIntegrations: {
|
|
currentCountQuery: async (db) => {
|
|
let result = await db.knex('integrations')
|
|
.count('id', {as: 'count'})
|
|
.whereNotIn('type', ['internal', 'builtin'])
|
|
.first();
|
|
|
|
return result.count;
|
|
}
|
|
},
|
|
customThemes: {}
|
|
};
|