b626db5d84
Unify product/store visibility on HQ whitelist, mark isTest snapshots, and fix SUPER_ADMIN access for the new module.
10 lines
246 B
TypeScript
10 lines
246 B
TypeScript
import { Global, Module } from '@nestjs/common';
|
|
import { TestWhitelistService } from './test-whitelist.service';
|
|
|
|
@Global()
|
|
@Module({
|
|
providers: [TestWhitelistService],
|
|
exports: [TestWhitelistService],
|
|
})
|
|
export class TestWhitelistModule {}
|