Sha256: 944fedf1f33bf03a1bc20862c225f081c6aebdfc986b1e2b36ef4dd135696aad
Contents?: true
Size: 524 Bytes
Versions: 7
Compression:
Stored size: 524 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 root to: "authorizations#new" end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems