Sha256: 0620a402939d036e90ceaffb217fc3fd27845b8211809bd752375e960702eadb
Contents?: true
Size: 609 Bytes
Versions: 20
Compression:
Stored size: 609 Bytes
Contents
# frozen_string_literal: true module Decidim module Verifications module PostalLetter # This is an engine that implements the administration interface for # user authorization by postal letter code. class AdminEngine < ::Rails::Engine isolate_namespace Decidim::Verifications::PostalLetter::Admin paths["db/migrate"] = nil routes do resources :pending_authorizations, only: :index do resource :postages, only: :create, as: :postage end root to: "pending_authorizations#index" end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems