Sha256: e16b82ef093ab374ca4ae257d910e356df3ef2a8a3e3c59fcfa04ede0b6fca14
Contents?: true
Size: 526 Bytes
Versions: 19
Compression:
Stored size: 526 Bytes
Contents
# frozen_string_literal: true module Decidim module Verifications module PostalLetter # This is an engine that performs an example user authorization. class Engine < ::Rails::Engine isolate_namespace Decidim::Verifications::PostalLetter 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
19 entries across 19 versions & 1 rubygems