mirror of
https://github.com/lingble/twenty.git
synced 2025-11-01 21:27:58 +00:00
* Add folder for api settings * Init create api key page * Update create api key page * Implement api call to create apiKey * Add create api key mutation * Get id when creating apiKey * Display created Api Key * Add delete api key button * Remove button from InputText * Update stuff * Add test for ApiDetail * Fix type * Use recoil instead of router state * Remane route paths * Remove online return * Move and test date util * Remove useless Component * Rename ApiKeys paths * Rename ApiKeys files * Add input text info testing * Rename hooks to webhooks * Remove console error * Add tests to reach minimum coverage
12 lines
350 B
TypeScript
12 lines
350 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { PrismaModule } from 'src/database/prisma.module';
|
|
import { AbilityModule } from 'src/ability/ability.module';
|
|
import { WebHookResolver } from 'src/core/web-hook/web-hook.resolver';
|
|
|
|
@Module({
|
|
imports: [PrismaModule, AbilityModule],
|
|
providers: [WebHookResolver],
|
|
})
|
|
export class WebHookModule {}
|