Sha256: 75f8de3048b11313c4af551fedbb4191b514058830bfddef114e7b9a6ab8a104
Contents?: true
Size: 643 Bytes
Versions: 78
Compression:
Stored size: 643 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 paths["lib/tasks"] = 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
78 entries across 78 versions & 1 rubygems