We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 214b121 commit b3e0383Copy full SHA for b3e0383
backend/clans/ClanController.ts
@@ -9,6 +9,8 @@ export default class ClanController {
9
public app: express.Application;
10
// A reference to the SQLite driver (base.db)
11
public db: any;
12
+ // Maximum number of members a clan can have
13
+ public static MemberLimit: number = 20;
14
15
constructor(app: express.Application, db: any) {
16
// Assign local variables to object
0 commit comments