Added new authentication strategies (JWT and GitHub OAuth), guards, and controllers. Implemented database module, schema with relations, and group management features, including CRD operations and person-to-group associations. Integrated validation and CORS configuration.
10 lines
303 B
TypeScript
10 lines
303 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { GroupsController } from './controllers/groups.controller';
|
|
import { GroupsService } from './services/groups.service';
|
|
|
|
@Module({
|
|
controllers: [GroupsController],
|
|
providers: [GroupsService],
|
|
exports: [GroupsService],
|
|
})
|
|
export class GroupsModule {} |