value userAware is not a member of object controllers.Application
4
5# Home page
6GET / controllers.Application.index
7GET /userAware controllers.Application.userAware
8GET /only-twitter controllers.Application.onlyTwitter
9GET /link-result controllers.Application.linkResult
10GET /current-user controllers.Application.currentUser
I then add the brackets on all the methods in the route file and rerun again and now I get another error
# Routes
# This file defines all application routes (Higher priority routes first)
# ~~~~
# Home page
GET / controllers.Application.index()
GET /userAware controllers.Application.userAware()
GET /only-twitter controllers.Application.onlyTwitter()
GET /link-result controllers.Application.linkResult()
GET /current-user controllers.Application.currentUser()
# Map static resources from the /public folder to the /assets URL path
GET /assets/*file controllers.Assets.at(path="/public", file)
-> /auth securesocial.Routes
But now I get another error.....
value userAware is not a member of object controllers.Application