2017-02-09 18:34:52 +08:00
|
|
|
module UserSettingsHelper
|
|
|
|
def on_settings_account_page?
|
|
|
|
controller_name == 'registrations' && action_name == 'edit' ||
|
2017-10-17 19:17:49 +08:00
|
|
|
controller_name == 'preferences' && action_name == 'index' ||
|
|
|
|
controller_name == 'addons' && action_name == 'index'
|
2017-02-09 18:34:52 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def on_settings_account_profile_page?
|
|
|
|
controller_name == 'registrations'
|
|
|
|
end
|
|
|
|
|
|
|
|
def on_settings_account_preferences_page?
|
|
|
|
controller_name == 'preferences'
|
|
|
|
end
|
|
|
|
|
2017-10-17 19:17:49 +08:00
|
|
|
def on_settings_account_addons_page?
|
|
|
|
controller_name == 'addons'
|
|
|
|
end
|
|
|
|
|
2017-02-09 18:34:52 +08:00
|
|
|
def on_settings_team_page?
|
2017-04-28 17:31:14 +08:00
|
|
|
controller_name.in?(%w(teams audits)) &&
|
|
|
|
action_name.in?(%w(index new create show audits_index))
|
2017-02-09 18:34:52 +08:00
|
|
|
end
|
|
|
|
end
|