Getting Started
Before starting, you need to be authenticated, since the package is hosted within a private npm registry, the authentication steps are described before.
Authentication
npm i @tradinos/cms-backend-authorizationimport { Module } from '@nestjs/common';
import { AuthorizationModule } from '@tradinos/cms-backend-authorization';
@Module({
imports: [
AuthorizationModule.registerAsync({
// Options Goes Here
}),
],
controllers: [],
providers: [],
})
export class AppModule {}
Last updated