Sha256: f93305f6a1fa9bf8dfc99c3e013f454db557bfc0ee40c2cee54b26c5c17f39c4
Contents?: true
Size: 637 Bytes
Versions: 59
Compression:
Stored size: 637 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 get :renew end end root to: "authorizations#choose" end end end end end
Version data entries
59 entries across 59 versions & 1 rubygems