All checks were successful
continuous-integration/drone/push Build is passing
8 lines
145 B
Ruby
8 lines
145 B
Ruby
class SecurityController < ApplicationController
|
|
before_action :require_user_signed_in
|
|
|
|
def index
|
|
@current_section = :security
|
|
end
|
|
end
|