Skip to content

Commit

Permalink
routes: Rename some routes
Browse files Browse the repository at this point in the history
  • Loading branch information
doortts committed Feb 22, 2017
1 parent 6557c7d commit bf8573b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions conf/routes
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ GET /favicon.ico
GET /assets/*file controllers.Assets.at(path="/public", file)

# Bootstrapping for test
GET /init controllers.Application.init()
GET /UIKit controllers.Application.UIKit()
GET /_init controllers.Application.init()
GET /_UIKit controllers.Application.UIKit()

# Search
GET /search controllers.SearchApp.searchInAll()
Expand All @@ -51,8 +51,8 @@ POST /-_-api/v1/favoriteOrganizations/:organizationId


# Import
GET /import controllers.ImportApp.importForm()
POST /import controllers.ImportApp.newProject()
GET /_import controllers.ImportApp.importForm()
POST /_import controllers.ImportApp.newProject()

# Organization
GET /organizations/new controllers.OrganizationApp.newForm()
Expand Down Expand Up @@ -295,7 +295,7 @@ DELETE /:user/:project/code/:branch/
POST /:user/:project/code/:branch/setAsDefault controllers.BranchApp.setAsDefault(user, project, branch)

# Help
GET /help controllers.HelpApp.help()
GET /_help controllers.HelpApp.help()

# Watch
POST /watch controllers.WatchApp.watch(resource: models.resource.ResourceParam)
Expand Down

0 comments on commit bf8573b

Please sign in to comment.