DEV Community

bravemaster619
bravemaster619

Posted on

1 1

Typescript: is it possible to apply multiple method decorators using class decorator?

Hi, devs. I've just opened up a question in stackoverflow. I'm sure it's a good question for you if you have some knowledege in typescript decorators.

Please help me in StackOverflow. Thanks!

I'm using experimental typescript decorators to manage access control in express.

class AccountController extends Controller {
  login(req: Request, res: Response) {
    const { email, password } = req.body;
    const token = await this.model.login(email, password);
    return res.json({
      token
    });
  }

  @hasRole('ADMIN')
  list(req: Request, res: Response) {
    res.json({
      data: await this.model.findAll()
    });

Top comments (0)

ACI image

ACI.dev: Fully Open-source AI Agent Tool-Use Infra (Composio Alternative)

100% open-source tool-use platform (backend, dev portal, integration library, SDK/MCP) that connects your AI agents to 600+ tools with multi-tenant auth, granular permissions, and access through direct function calling or a unified MCP server.

Check out our GitHub!