9 lines
185 B
Ruby
9 lines
185 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AdminController < ApplicationController
|
|
before_action :authenticate_administrateur!
|
|
|
|
def index
|
|
redirect_to(admin_procedures_path)
|
|
end
|
|
end
|