Sha256: 2856c1b7254a4f2c3ff9440191dfca794e54624fb1f399c2c50db810fb101095

Contents?: true

Size: 378 Bytes

Versions: 1

Compression:

Stored size: 378 Bytes

Contents

class Kiqr::Users::Settings::BaseController < KiqrController
  renders_submenu partial: "kiqr/users/settings/navigation"

  before_action do
    # This is to set the breadcrumbs for the onboarding process.
    add_breadcrumb I18n.t("kiqr.breadcrumbs.settings.root"), user_settings_profile_path
  end

  private

  def setup_user
    @user = User.find(current_user.id)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kiqr-0.1.0.alpha1 app/controllers/kiqr/users/settings/base_controller.rb