Skip to content

Instantly share code, notes, and snippets.

@pleerock
Last active May 17, 2016 08:58
Show Gist options
  • Save pleerock/6e253df1367b0a237692cd0b8b244bf8 to your computer and use it in GitHub Desktop.
Save pleerock/6e253df1367b0a237692cd0b8b244bf8 to your computer and use it in GitHub Desktop.
@JsonController()
export class BlogController {
@Get("/blogs")
getAll() {
if (accessAllowed)
throw new ForbiddenError("Access is denied");
return [
{ id: 1, name: "Blog " + filter.keyword },
{ id: 2, name: "Blog " + filter.keyword }
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment