public async handle()

in lambda/users-get.ts [22:36]


    public async handle(event: APIGatewayEvent): Promise<APIEventResponse> {
        try {

            // Make sure user is logged in as super user
            if (!this.isSuperAdmin(event)) {
                return this.failure(null, 403, 'Not authorized!');
            }

            // Get the users from the database
            return this.success(await this.db.usersGet());
        } catch (ex) {
            util.Log.Error(ex);
            return this.failure(ex);
        }
    }