because I got bored of customising my CV for every job
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 11 lines 319 B view raw
1import { Policy, PublicResourcePolicy } from "@cv/auth"; 2import { Injectable } from "@nestjs/common"; 3import { Institution } from "./institution.entity"; 4 5@Injectable() 6@Policy(Institution) 7export class InstitutionPolicy extends PublicResourcePolicy<Institution> { 8 override create(): boolean { 9 return true; 10 } 11}