Code cleanup.

This commit is contained in:
Martin Edenhofer 2016-09-01 00:33:15 +02:00
parent af1aa0874d
commit f5beac8e08
4 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@ class App.OrganizationProfile extends App.Controller
constructor: (params) ->
super
@authenticateCheckRedirect(true)
@authenticateCheckRedirect()
# fetch new data if needed
App.Organization.full(@organization_id, @render)

View file

@ -14,7 +14,7 @@ class App.Search extends App.Controller
super
# check authentication
@authenticateCheckRedirect(true)
@authenticateCheckRedirect()
current = App.TaskManager.get(@task_key).state
if current && current.query

View file

@ -14,7 +14,7 @@ class App.TicketZoom extends App.Controller
super
# check authentication
@authenticateCheckRedirect(true)
@authenticateCheckRedirect()
@formMeta = undefined
@ticket_id = params.ticket_id

View file

@ -3,7 +3,7 @@ class App.UserProfile extends App.Controller
super
# check authentication
@authenticateCheckRedirect(true)
@authenticateCheckRedirect()
# fetch new data if needed
App.User.full(@user_id, @render)