Need to fix this. ``` @get(prefix + '/rules/{ruleId}/actions/{actionId}', { responses: { '200': Schema.collectionResponse( Action, 'Successfully retrieve action resources', ), }, }) async getActionByID( @param(Schema.pathParameter('ruleId', 'Rule resource ID')) ruleId: string, @param(Schema.pathParameter('actionId', 'Action resource ID')) actionId: string, ): Promise<CollectionResponse> { const data = await this.ruleRepository .actions(ruleId) .find({where: {id: actionId}}, {tenantId: await this.tenantId}); return new CollectionResponse(Action, data); } ```
Need to fix this.