Sha256: 4af1e268035be449f031628c25381e8d77581188e10956a69586dfb47afc00ad
Contents?: true
Size: 635 Bytes
Versions: 20
Compression:
Stored size: 635 Bytes
Contents
# frozen_string_literal: true module Decidim module Verifications module IdDocuments # This is an engine that performs an example user authorization. class AdminEngine < ::Rails::Engine isolate_namespace Decidim::Verifications::IdDocuments::Admin paths["db/migrate"] = nil routes do resources :pending_authorizations, only: :index do resource :confirmations, only: [:new, :create], as: :confirmation resource :rejections, only: :create, as: :rejection end root to: "pending_authorizations#index" end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems