tsframework / ts-framework

A Web Framework for Nodejs
http://tsframework.github.io
MIT License
43 stars 6 forks source link

Decorator Action #19

Closed jhonmike closed 8 years ago

jhonmike commented 8 years ago

under development :D

export class AuthController extends Controller
{
    // GET: /auth
    @action({
        'path': '/auth',
        'method': ['GET']
    }) index()
    {
        this.response.sendContent("Auth");
    }