You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
308 B

  1. # frozen_string_literal: true
  2. class Settings::BaseController < ApplicationController
  3. layout 'admin'
  4. before_action :authenticate_user!
  5. before_action :set_pack
  6. before_action :set_body_classes
  7. def set_pack
  8. use_pack 'settings'
  9. end
  10. def set_body_classes
  11. @body_classes = 'admin'
  12. end
  13. end