Sha256: c6298dd67dece17514e42b5e6c60bbf2349995bfc33a835c27299557550c1024
Contents?: true
Size: 407 Bytes
Versions: 10
Compression:
Stored size: 407 Bytes
Contents
# frozen_string_literal: true # Admin::ImportDocumentsController module Admin class ImportDocumentsController < Admin::AdminController before_action :set_import_document, only: %i[show] def show end private # Use callbacks to share common setup or constraints between actions. def set_import_document @import_document = ImportDocument.find(params[:id]) end end end
Version data entries
10 entries across 10 versions & 1 rubygems