10 lines
179 B
Ruby
10 lines
179 B
Ruby
class Services::BaseController < ApplicationController
|
|
before_action :set_current_section
|
|
|
|
private
|
|
|
|
def set_current_section
|
|
@current_section = :services
|
|
end
|
|
end
|