Code cleanup.
This commit is contained in:
parent
af1aa0874d
commit
f5beac8e08
4 changed files with 4 additions and 4 deletions
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -14,7 +14,7 @@ class App.TicketZoom extends App.Controller
|
|||
super
|
||||
|
||||
# check authentication
|
||||
@authenticateCheckRedirect(true)
|
||||
@authenticateCheckRedirect()
|
||||
|
||||
@formMeta = undefined
|
||||
@ticket_id = params.ticket_id
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue