Skip to content

Commit

Permalink
tweaked mappings to get column header table sorting working
Browse files Browse the repository at this point in the history
  • Loading branch information
scrain committed Aug 20, 2015
1 parent 70d6747 commit 5ba11b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions grails-app/controllers/UrlMappings.groovy
Expand Up @@ -4,8 +4,8 @@ class UrlMappings {
"/login"(controller: 'auth', action: 'index')
"/status"(controller: 'status', action: 'index')
"/updateStatus"(controller: 'status', action: 'updateStatus')
"/users"(controller: 'person', action: 'index')
"/person"(controller: 'person', action: 'show')
"/person/index"(controller: 'person', action: 'index')
"/person/show/${id}"(controller: 'person', action: 'show')
"/unfollow/$userToUnfollow"(controller: 'person', action: 'unfollow')
"/follow/$userToFollow"(controller: 'person', action: 'follow')
"/"(view:"/index")
Expand Down

0 comments on commit 5ba11b8

Please sign in to comment.