Skip to content

Instantly share code, notes, and snippets.

@brachi-wernick
Created July 18, 2018 07:19
Show Gist options
  • Save brachi-wernick/967566a1652a4b057a220b0d77752d28 to your computer and use it in GitHub Desktop.
Save brachi-wernick/967566a1652a4b057a220b0d77752d28 to your computer and use it in GitHub Desktop.
activate decorator
export const ACTIVATE_FIELD_NAME = "__activate__";
export function Activate(permissions: string[]) {
return function decorator(target) {
target[ACTIVATE_FIELD_NAME] = permissions;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment