File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed
json-api-server/src/app/resources
micro-orm/controllers/extend-user
type-orm/controllers/extend-user Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ Thumbs.db
4242.nx /workspace-data
4343.angular
4444.dev.env
45+ .env.local
4546
4647vite.config. * .timestamp *
4748vitest.config. * .timestamp *
Original file line number Diff line number Diff line change 22 "name" : " json-api-server-e2e" ,
33 "$schema" : " ../../node_modules/nx/schemas/project-schema.json" ,
44 "implicitDependencies" : [
5- " json-api-server"
5+ " json-api-server" , " json-api-nestjs-sdk "
66 ],
77 "projectType" : " application" ,
88 "targets" : {
Original file line number Diff line number Diff line change @@ -41,8 +41,8 @@ import { AtomicInterceptor } from '../../service/atomic.interceptor';
4141@UseInterceptors ( ControllerInterceptor )
4242@JsonApi ( Users )
4343export class ExtendUserController extends JsonBaseController < Users , 'id' > {
44- @InjectService ( ) public service : JsonApiService < Users > ;
45- @Inject ( ExampleService ) protected exampleService : ExampleService ;
44+ @InjectService ( ) public service ! : JsonApiService < Users > ;
45+ @Inject ( ExampleService ) protected exampleService ! : ExampleService ;
4646 override getOne (
4747 id : string | number ,
4848 query : QueryOne < Users , 'id' >
Original file line number Diff line number Diff line change @@ -41,8 +41,8 @@ import { AtomicInterceptor } from '../../service/atomic.interceptor';
4141@UseInterceptors ( ControllerInterceptor )
4242@JsonApi ( Users )
4343export class ExtendUserController extends JsonBaseController < Users , 'id' > {
44- @InjectService ( ) public service : JsonApiService < Users > ;
45- @Inject ( ExampleService ) protected exampleService : ExampleService ;
44+ @InjectService ( ) public service ! : JsonApiService < Users > ;
45+ @Inject ( ExampleService ) protected exampleService ! : ExampleService ;
4646 override getOne (
4747 id : string | number ,
4848 query : QueryOne < Users , 'id' >
You can’t perform that action at this time.
0 commit comments