Skip to content

Instantly share code, notes, and snippets.

@ktutnik
Created May 16, 2019 10:58
Show Gist options
  • Select an option

  • Save ktutnik/c9551d50f7876a17c53eb90b17492ddb to your computer and use it in GitHub Desktop.

Select an option

Save ktutnik/c9551d50f7876a17c53eb90b17492ddb to your computer and use it in GitHub Desktop.
@domain()
export class User {
constructor(
public name:string,
public birthDate:Date,
@authorize.role("Admin")
public role: "User" | "Admin"
){}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment