Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bug:about the MVC package route binding #1364

Merged
merged 3 commits into from
Oct 5, 2019

Commits on Sep 25, 2019

  1. Fix bug:about the MVC package route binding

    I found there has some little bug in the controller_method_parser.go
    the bug is : if someone use the code like this:
    func (cc *HelloWorld) GetInfoXYT()
    We can't create the Url that he want.
    We lose the T, our's url is: info/x/y
    Cause// it doesn't count the last uppercase and the last append is
    words = append(words, s[start:end])
    BenLampson committed Sep 25, 2019
    Configuration menu
    Copy the full SHA
    8751068 View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2019

  1. Update controller_test.go

    BenLampson authored Sep 26, 2019
    Configuration menu
    Copy the full SHA
    146233b View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2019

  1. add test case for kataras#1364

    kataras committed Oct 5, 2019
    Configuration menu
    Copy the full SHA
    0e1af3f View commit details
    Browse the repository at this point in the history