All checks were successful
continuous-integration/drone/push Build is passing
Prototyping settings forms
13 lines
193 B
Ruby
13 lines
193 B
Ruby
class Admin::SettingsController < Admin::BaseController
|
|
before_action :set_current_section
|
|
|
|
def index
|
|
end
|
|
|
|
private
|
|
|
|
def set_current_section
|
|
@current_section = :settings
|
|
end
|
|
end
|