Sha256: bbef8c9b7192dbf1193435b8372bdd058883467bda6630284e3761e0430968ec
Contents?: true
Size: 612 Bytes
Versions: 12
Compression:
Stored size: 612 Bytes
Contents
# frozen_string_literal: true module Decidim module Verifications module IdDocuments # This is an engine that performs an example user authorization. class Engine < ::Rails::Engine isolate_namespace Decidim::Verifications::IdDocuments paths["db/migrate"] = nil paths["lib/tasks"] = nil routes do resource :authorizations, only: [:new, :create, :edit, :update], as: :authorization do collection do get :choose end end root to: "authorizations#choose" end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems