Add base controller for service controllers
continuous-integration/drone/push Build is running

This commit is contained in:
Râu Cao
2023-08-07 18:15:17 +02:00
parent 852e2fea1e
commit f49aff262c
2 changed files with 14 additions and 12 deletions
@@ -0,0 +1,9 @@
class Services::BaseController < ApplicationController
before_action :set_current_section
private
def set_current_section
@current_section = :services
end
end